Jesska Jounes replied

48 weeks ago

Hello All,

Whats the css i need to use to override the rounded corners on the header. I have used firebug and cant find the ID anywhere.

i know the actuall CSS styling code;

border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
border-top-left-radius: 0px;
border-top-right-radius: 0px;

but whats theactual ID i need to use like #site-header (which the above code is under and does not work).

Regards,
Topham

Tete Rouge replied

48 weeks ago

The border radius is on the image inside the header, so use:

#site-header img{border-radius:0}

If that doesn't work use:

#site-header img{border-radius:0 !important}

The px is unnecessary when defining a value of 0.
Please log in to post a reply.