Page 1 of 1

Remove border and dark shading from button

Posted: Thu Feb 20, 2014 10:20 pm
by John6122514

Hi Support,
I am stuck on a CSS issue. I want to take the border off a button and I want to take the dark circle shading around the icon. I made a custom change to the css theme. Can you tell me how we can add to this class make these changes.

.homebtnclass{
background: #328cc7 !important;
border-color: #328cc7 !important;
color: #ffffff !important;

}
Image


Remove border and dark shading from button

Posted: Fri Feb 21, 2014 12:19 am
by Illya Stepanov

Hi John,

Please use this styles to remove shadow and borders:
pre
box-shadow: 0px 0px 0px #fff !important;
border: 0px solid #fff !important;
/pre


Remove border and dark shading from button

Posted: Fri Feb 21, 2014 12:43 am
by John6122514

That works great. Thank you. Do you have any suggestion on removing the dark circle around the icon? Image


Remove border and dark shading from button

Posted: Fri Feb 21, 2014 2:46 am
by Illya Stepanov

Dear John,

You need to create an CSS rule for this icon (select it with debug tool the one like FireBug). And apply next style inside:
pre
background-color: transparent !important;
/pre