Forum: HTML and CSS 33 Days Ago |
| Replies: 5 Views: 486 ul#navigation { width: 12em; top: auto; left: 0; bottom: auto; right: auto; position: fixed;} /* should put the menu in the centre of the left edge of the page, you can set the position explicitly I... |
Forum: HTML and CSS 33 Days Ago |
| Replies: 9 Views: 605 sames as IE6/png, conditional css with eot fonts for IE
or wait till IE supports css3 properly (looks out window, watching for Hell to freeze over)<!--[if IE]>
@font-face { font-family:... |
Forum: HTML and CSS 33 Days Ago |
| Replies: 9 Views: 605 local is the local pc font store, I think, from the web server, even a web server installed locally it requires a url
something like@font-face {
font-family: GraublauWeb;
src: local("Lucida... |
Forum: HTML and CSS Nov 6th, 2009 |
| Replies: 51 Views: 2,862 Q&D validation,
run the site through http://www.browsershots.org in browsers for each OS
IF w3c html validation errors are egregious it will show blankscreens in some (or many, sometimes ya really... |
Forum: HTML and CSS Oct 4th, 2009 |
| Replies: 4 Views: 863 server processing, the google search would be for, apache mod_rewrite
too, have index.php in the folder and link to the folder
also works when you dont want the folder directly linkable... |
Forum: HTML and CSS Sep 3rd, 2009 |
| Replies: 5 Views: 612 this is better<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> ... |
Forum: HTML and CSS Jul 24th, 2009 |
| Replies: 20 Views: 1,676 the php is not being parsed in the form
is the form extension .php so that php in the form will be recognized
or is it still labelled .htm/.html
I have a mental blank on any other reason |
Forum: HTML and CSS Jun 30th, 2009 |
| Replies: 5 Views: 590 Design in % and ems, per W3C guidelines, and you only have to make one design, that works in every size. |
Forum: HTML and CSS May 29th, 2009 |
| Replies: 6 Views: 545 spent a lot of time repairing obfuscated and over-escaped codes where the original writer left the company, and they have no copy of the source |
Forum: HTML and CSS Apr 9th, 2009 |
| Replies: 4 Views: 1,142 wrap your code in
code
tags leave out the blank lines
it makes it easier to read
use proper html doctypes if you want to use attributes of those doctypes
<html> means html 2.0 = no... |
Forum: HTML and CSS Mar 19th, 2009 |
| Replies: 1 Views: 444 <select onchange='document.smallimage.src= this.value;document.header.background.src=this.value'>
<option selected='selected' value='blank.jpg'>Choose</option>
<option value='1.jpg'>one</option>... |
Forum: HTML and CSS Jan 18th, 2009 |
| Replies: 3 Views: 2,220 <table rules='all' border='0'>
<tr><td>X<td> <td>
<tr><td> <td>X<td>
<tr><td>O<td>O<td>X
</table>
theres no need for anything fancy, table has a rules property that does... |