Forum: PHP Jan 25th, 2008 |
| Replies: 7 Views: 1,022 You change these settings using CSS (Cascading Style Sheets). |
Forum: HTML and CSS May 10th, 2007 |
| Replies: 7 Views: 2,620 You can call the css like this:
<link rel="stylesheet" href="../css_directory/style.css" />
Each time you put " ../ " in there, it goes up to that folders parent directory. Once you get to the... |
Forum: HTML and CSS May 9th, 2007 |
| Replies: 2 Views: 2,694 table { border-color: #cc3300; }
td { border-color: #cc3300; }
or you can combine the two commands into one:
table { border: 1px dashed #cc3300; }
Hope this helps.
Nick |
Forum: HTML and CSS Apr 11th, 2007 |
| Replies: 2 Views: 2,302 #navlist
{
margin-left: 0;
padding-left: 0;
padding-top:100px;
list-style: none;
}
#navlist li
{ |