Forum Moderators: mack
the main uses main.css---
a:link, a:visited
{
color: #FF0000
}
a:hover, a:active
{
color: #4169E1;
text-decoration: none
}
the other 16 pages use script.css--
a:link, a:visited
{
color: #FF0000
}
a:hover, a:active
{
color: #4169E1;
text-decoration: none
}
how come the main page nav links color doesnt match the rest of my pages nav's?
secondly i made a table design on my pages and want to change text in individual td's but not in all my pages
i want the text to be bold in page 7 td one , so how do i do it
<table>
<tr>
<td>i want the text bold in here</td>
<td>2</td>
<td>3</td>
</tr>
</table>
use <strong>...</strong> between your <td> tags.
If u want to change any element's attributes at any time, just define a class in the css and use it.
e.g. say u want to change the text color to white some where...
in your css
.white{
color:#ffffff;
}
then in your write your <td> as <td class="white">
As for the other stuff, lol, i think u're using ur editor improperly. sorry d.