Hi there,
I’m having trouble with links.
I want a specific link to change color. But no matter what I do, It will not change. Here’s the CSS:
.home_box_left a{
font-family:Aller!important;
padding:3px;
background-image: url(‘http://staging.scotiafishing.com/wp-content/themes/Scotia_Fishing/images/grey-button.png’)!important;
color:#ffffff !important;
background-repeat:no-repeat;
background-size:100% 100%;
padding:7px 11px 6px 11px;
font-size:10px;
}
Please help!
Thanks
P
Hi Peatkay!
Please firstly turn on custom CSS field for ALB elements – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and then give your element a custom CSS class and then change the code to following one
.your-custom-class a{
font-family:Aller!important;
padding:3px;
background-image: url(‘http://staging.scotiafishing.com/wp-content/themes/Scotia_Fishing/images/grey-button.png’)!important;
color:#ffffff !important;
background-repeat:no-repeat;
background-size:100% 100%;
padding:7px 11px 6px 11px;
font-size:10px;
}
If that does not help, please post the link to your page and point out the button you would like to edit
Best regards,
Yigit
That didn’t help I’m afraid
http://www.staging.scotiafishing.com
The grey boxes that have blue links, I would like the links white.
Thanks
P
Hi!
Please use following code
.home_box_right p a strong {
color: white;
}
.home_box_left p a strong {
color: white;
}
Regards,
Yigit
Thanks, that worked