Posts: 488
Name: Chip Johns
Location: Savannah Georgia
|
<div style="text-align:center;border: 1px solid #A9B8C2; color: #000000 !important;background-color: #C0C9D2;font-size: 11px;-moz-border-radius: 10px;">
It would be easier if you put the style info either in the head or better yet in a seperate css file. This gives you a little more control, and makes your code a little more versatile.
You could do something like this:
#divname {text-align:center;border: 1px solid #A9B8C2; color: #000000 !important;background-color: #C0C9D2;font-size: 11px;-moz-border-radius: 10px;}
#divname a:link {color: #0000FF;}
--
Notice that you can control the a:link attributes for each div if you give the div an id name.
<div id="divname">
content
</div
|