• Hey,

    I’d like to change the colour of the html links in my posts to the normal blue colour that we’re all used to.

    Where abouts would I change this in the scripting and what would I change it too please?

    Thanks
    Jamie

Viewing 3 replies - 1 through 3 (of 3 total)
  • Open up your theme’s style.css and find the lines

    .entry a,
    #sidebar a,
    h2 a,
    h3 a,
    h4 a {
    	color: #898989;
    	text-decoration: none;
    }
    .entry a:hover,
    #sidebar a:hover,
    h2 a:hover,
    h3 a:hover,
    h4 a:hover {
    	color: #000000;
    }

    either delete that whole section of CSS or change the colours to the colours you want! This will only change the sidebar and post entry links to cahnge the main heading links you need to look for

    #title h1 a {
    color:#000000;
    text-decoration:none;
    }

    and

    h1 a {
    color:#000000;
    text-decoration:none;
    }

    Open up your theme’s style.css and find the lines

    .entry a,
    #sidebar a,
    h2 a,
    h3 a,
    h4 a {
    	color: #898989;
    	text-decoration: none;
    }
    .entry a:hover,
    #sidebar a:hover,
    h2 a:hover,
    h3 a:hover,
    h4 a:hover {
    	color: #000000;
    }

    either delete that whole section of CSS or change the colours to the colours you want! This will only change the sidebar and post entry links to cahnge the main heading links you need to look for

    #title h1 a {
    color:#000000;
    text-decoration:none;
    }

    and

    h1 a {
    color:#000000;
    text-decoration:none;
    }

    If you have any more problems you can contact me via my personal site http://instantsolve.net/blog/contact/

    Thread Starter bassjamm

    (@bassjamm)

    Hey mate…

    Thanks for the input again.

    I’m not looking to change the colour of the headings nor the sidebar colours, i’m happy with them. All I want to change is the colour of the links that are within my posts, can i do this without editting them individually in the post editor and without having all of the HTML links change colour?

    Sorry if i didn’t make myself clear.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘HTML link colour…’ is closed to new replies.