• Hi all,

    If you take a look at the www.ads-software.com site i am currently working on, https://www.wisteriabusinessplans.co.uk, you will see that all the text for the links (tabs) at the top of the page are grey. however i wish to change the colour of these to white! i was wondering how i would go about doing this.

    Thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • how is your knowledge of css?

    most likely you need to edit style.css of your theme; identify the css classes and/or ids of the menu;

    as the theme you are using is a flat copy of the default TwentyTen (without leaving any acknowledgment to the creators of the original theme in any way) this is simple:

    style.css:

    #access a {
    	color: #aaa;
    	display: block;
    	line-height: 38px;
    	padding: 0 10px;
    	text-decoration: none;
    }

    enter a new color code instead of #aaa

    Thread Starter rkbsham

    (@rkbsham)

    hi, my knowledge of css is very limited hence i am asking for help ??

    i tried changing it but wasnt sure of the code for white! do you know what it is?

    thanks

    Hi,

    See:> HTML Color Codes

    Thread Starter rkbsham

    (@rkbsham)

    yes, got it

    thanks again

    you could also simply type ‘white’ as a color code;
    there is a limited amount of colors that can be called by name:

    more info on web color names: https://en.wikipedia.org/wiki/Web_colors#HTML_color_names

    Thread Starter rkbsham

    (@rkbsham)

    cheers!

    although last time i simply entered “white” as the colour, it didnt seem to change, but i have the code inserted now so its all good

    thanks again

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘changing colour of links’ is closed to new replies.