• Hi

    I want to chnage the color of links in my POSTS. But the in the CSS when i change the color, it also changes the color of links in the SIDEBAR.

    How do i change just the color of the links in my POSTS without changing the ones in my SIDEBAR?

    Here is the code i’m referring to:

    body {
    	margin: 0;
    	padding: 0;
    	background: #e9e7e8 url("images/background.gif") repeat-y center;
    	font: 11px/18px Arial;
    	color: #222222;
    }
    
    img {
    	border: 0;
    }
    
    a {
    	color: #000;
    	text-decoration: none;
    }
    
    a:hover {
    	color: #ae141e;
    }

    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • You probably need to use a Style tag within your posts.

    You need to make more specific CSS styling.

    For most themes, using
    #content a { color: #...; }
    or
    .post a { color: #...; }

    will work – add as an additional line

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Problem Changing Link Color in Posts’ is closed to new replies.