Shape 5

Joomla Templates => Gamers - Club => : wirex May 04, 2015, 01:39:39 PM



: Diferent look of buttons
: wirex May 04, 2015, 01:39:39 PM
Hi,

I have page with two buttons on it:
http://s572503108.domenaklienta.pl/trial1429728720/index.php/wydarzenia/

1st: "Potwierdź obecność" mean Confirm and 2nd "Szczeg?ły" mean Details. Both have different look/color. How can I make look the same? I would like to use color as are in Gamer templates (blue)

Thanks,
Wirex


: Re: Diferent look of buttons
: mikenicoll May 05, 2015, 05:21:26 PM
Hello,

Your account is currently flagged as a "Free" member. You will need to have an active subscription to utilize the club forums.


: Re: Diferent look of buttons
: wirex May 06, 2015, 02:33:25 AM
Hi,

I have followed your instruction and cleared cache and cookies. Hopefully you can answer my query now.

Thanks.


: Re: Diferent look of buttons
: mikenicoll May 06, 2015, 03:56:30 PM
Hello,

Thanks your account has been verified and upgraded.

Your extension com_eventsbooking doesn't appear to use its own styling for its buttons. You should be able to add this to the custom.css file to add some colors/styling for then.

1) Add this:

:
custom.css

.btn {
     background: none repeat scroll 0% 0% #006dcc;
     padding: 6px 18px;
}

.btn:hover {
     background: none repeat scroll 0% 0% #0044cc;
}

2) Edit the color value for the text to white in the joomla file below:

:
bootstrap-default.css - line 5098

a.btn {
    color: #fff !important;
}


: Re: Diferent look of buttons
: wirex May 07, 2015, 03:30:19 AM
Hi,

Thanks for your reply. It worked. Just one remark regarding font color. I've changed code in line 5040 in bootstrap-default.css

Just one another question. How changes in Css code will act when I upgrade joomla, template or extension?

Thanks


: Re: Diferent look of buttons
: mikenicoll May 07, 2015, 10:55:48 PM
Hello,

The custom.css file wont change but the bootstrap files will. I think bootstrap was using a !important call for some reason which is why a custom.css file override wouldn't have worked but the other ones did.