Log in

View Full Version : Coding



hidden
05-09-2009, 01:16 PM
hi everyone,

i followed this script which works perfectly and pretty awesome anyways this is the link 2 it:

http://www.dynamicdrive.com/dynamicindex3/tabdocviewer.htm

i was wondering how can i change the text color here i was able to find out how to change hover-over text color but not the original text color :( since i am a noob in coding can u please enlighten me on how to change text color

ty

X96 Web Design
05-09-2009, 10:37 PM
There isn't a text color defined, so you'll have to add it... Just edit this in the CSS:

#tablist li a{
text-decoration: none;
padding: 3px 0.5em;
margin-left: 3px;
border: 1px solid #778;
border-bottom: none;
background: white;
color: YOUR COLOR HERE
}
A great place to find colors is on this reference (http://computerhope.com/htmcolor.htm).

Cheers,
X