Front page - Browse Shop button - change its colour

Multipurpose WordPress Theme Forum Support
GK User
Mon Nov 09, 2015 2:59 am
I'm wanting to change the Front page button border and text colour as it is on a dark background.
Thanks

<strong><a class="dark btn-border" href="#" data-sr="enter bottom and wait .5s">Browse store</a></strong>
User avatar
Fresh Boarder

GK User
Mon Nov 09, 2015 9:08 am
Hi,
Try to add the following code into the theme’s css/override.css file or use any custom css plugin:
Code: Select all
.dark.btn-border {
  border-color: #fff !important;
  color: #fff !important;
}
.dark.btn-border:active,
.dark.btn-border:focus,
.dark.btn-border:hover {
  border-color: #f079a3 !important;
  color: #f079a3 !important;
}

and change color values to your own.
User avatar
Moderator

GK User
Wed Nov 11, 2015 11:04 am
cheers will give it a shot.
User avatar
Fresh Boarder


cron