• 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 https://londonsstories.co.uk

    Any help would be much appreciated.

    Thanks

Viewing 1 replies (of 1 total)
  • Moderator cubecolour

    (@numeeja)

    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;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Link colour’ is closed to new replies.