• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Html and Css questions..eh...

Ok so i have this webpage here: http://faf.dproductions.net/index.htm

The top has that little nav bar where it says "L i n k s | F i l e s | P h o t o s | J o u r n a l | L i n u x"

What i want to do is have those links not underlined and in the color #D4CBB2.
Then i want any links on the body of the page underlined and in the color #544E38.

How can i do this? I guess i am suppose to use CSS style sheet things, but i fiddled around with them and cant get anything to work rite? Can someone help me out, or point me in the right direction?
 
Well, for the colors you can use the basic page properties to define that, I think. Not sure about the non-underline.
 
if i define the link colors in the body tag it dosent help since i want some of my links one color and the rest another color. i cant frickin get css to like be effective on the links and change their color...
 
<style type="text/css">
<!--

.style1 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; color: #D4CBB2; text-decoration: none}
.style2 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; color: #544E38; text-decoration: none}

-->
</style>

<a href="#" class="style1">This text would be #D4CBB2 with no underline</a>
<a href="#" class="style2">This text would be #544E38 with no underline</a>
 
Back
Top