Forums

Link colour (2 posts)

  1. writeonsister
    Member
    Posted 8 months ago #

    Hi,

    The links on my page appear in the same colour as the rest of the text so unless people scroll over them they wont know that they are there. How can i change this? Please take a look at the site to see what i mean http://londonsstories.co.uk

    Any help would be much appreciated.

    Thanks

  2. cubecolour
    ɹoʇɐɹǝpoɯ
    Posted 8 months ago #

    Look in your style.css for

    a{
    	text-transform:none;
    	color:#900;
    	text-decoration:none;
    }

    Force the 'color' to take effect by telling it that it is important

    a{
    	text-transform:none;
    	color:#900!important;
    	text-decoration:none;
    }

    or if you only want the links within the post/page content to be coloured (not the links in the nav etc), look for

    .entry{
    	margin:30px 0;}

    and add this after

    .entry a{
    	color:#900;
    }

Reply

You must log in to post.

About this Topic