Shape 5

Joomla Templates => Spectrum - Club => : cspgsl March 09, 2015, 06:01:26 PM



: change colour for hyperlinks
: cspgsl March 09, 2015, 06:01:26 PM
At http://holnessmassagetherapy.com/  I have added a custom css entry to change the menu items to white.problem is, it also changes all of my hyperlinks to white and therefore invisible. How can I separate the two in css?

Thanks


: Re: change colour for hyperlinks
: mikenicoll March 09, 2015, 11:24:33 PM
Hello,

:
s5_flex_menu.css - line 157

#s5_nav li a {
    color: #ffffff;
    font-size: 0.85em;
    font-weight: 500;
}

Changing it here should only affect the links that are part of the Menu.


: Re: change colour for hyperlinks
: cspgsl March 10, 2015, 05:41:03 AM
Sorry, I was in the wrong place. The problem is with the phone number and links, not the main menu. They take up the colour specified in Highlight 2 Color in the template admin

I wish to segregate these and apply a colour of my choice.

Thanks,


: Re: change colour for hyperlinks
: mikek March 10, 2015, 07:11:01 AM
Hello,

This should work:

#s5_pos_custom_2 a, #s5_pos_custom_2:hover {
color:#FFFFFF !important;
}


: Re: change colour for hyperlinks
: cspgsl March 10, 2015, 08:13:22 AM
Thanks - and if I wanted to control the links in the body of a message like in the About Jackie page, what would I need then as they are governed by the template manager


: Re: change colour for hyperlinks
: mikenicoll March 10, 2015, 03:35:09 PM
This should work:

:
#s5_component_wrap a {
  color: #ff0000 !important;}


: Re: change colour for hyperlinks
: cspgsl March 11, 2015, 06:05:28 AM
Thanks guys.



: Re: change colour for hyperlinks
: mikenicoll March 11, 2015, 04:21:38 PM
NP :)