John6122514
Posts: 0
Joined: Wed Aug 07, 2013 7:10 pm

Remove border and dark shading from button

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

Illya Stepanov
Posts: 0
Joined: Mon Mar 18, 2013 8:48 am

Remove border and dark shading from button

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

John6122514
Posts: 0
Joined: Wed Aug 07, 2013 7:10 pm

Remove border and dark shading from button

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

Illya Stepanov
Posts: 0
Joined: Mon Mar 18, 2013 8:48 am

Remove border and dark shading from button

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

Return to “Issues”