![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
![[community profile]](https://www.dreamwidth.org/img/silk/identity/community.png)
This is probably a question I should have asked a long time ago, but it's come up again in my updating of some old layouts, so. :Þ
A couple of different layouts I use (including my own journal and
prose_alchemist) not only give rounded corners to entries and modules, they insist on rounding off the corners--or sometimes half the corners--of my header images as well.
Is there a way I can get rid of all the rounded corners, and just have nice, straight, angular ones? I'd like to do that with the header images and entries/modules, although I'd settle for just not having the corners of my headers forcibly rounded off. (If I wanted them rounded, I would have made them that way, DW...)
EDIT: issue solved! CSS to do the trick is here in the comments. Thanks for the helps!
A couple of different layouts I use (including my own journal and
![[community profile]](https://www.dreamwidth.org/img/silk/identity/community.png)
Is there a way I can get rid of all the rounded corners, and just have nice, straight, angular ones? I'd like to do that with the header images and entries/modules, although I'd settle for just not having the corners of my headers forcibly rounded off. (If I wanted them rounded, I would have made them that way, DW...)
EDIT: issue solved! CSS to do the trick is here in the comments. Thanks for the helps!
no subject
Date: 2015-08-31 12:00 pm (UTC)The property you want to change is "border-radius". Try adding this to your custom css:
#header ( border-radius: none; }
You can also specify that for #entry, #footer, etc.
no subject
Date: 2015-09-01 01:29 am (UTC)no subject
Date: 2015-09-01 01:53 am (UTC)no subject
Date: 2015-09-01 02:01 am (UTC)no subject
Date: 2015-09-01 12:12 pm (UTC)#header,
#entry,
#module,
#footer { border-radius: none !important; }
no subject
Date: 2015-09-02 12:47 am (UTC)no subject
Date: 2015-09-02 01:10 am (UTC)no subject
Date: 2015-09-02 01:19 am (UTC)no subject
Date: 2015-09-03 01:57 am (UTC)#header,
#footer,
#primary,
.comment,
.module {
border-radius: 0 !important;
}
Thanks for all your efforts to help!
(Ironically, after looking at the change on my personal journal, I decided not to use it there. I'm quite glad to be rid of the wonky half-rounding on my fic journal, though.)
no subject
Date: 2015-09-03 01:00 pm (UTC)no subject
Date: 2015-09-02 09:17 am (UTC)no subject
Date: 2015-09-03 01:52 am (UTC)no subject
Date: 2015-09-02 02:08 pm (UTC)However, I tried
no subject
Date: 2015-09-03 01:50 am (UTC)Which, as it turns out, I could indeed--because yes, using "0" instead of "none" is what was needed. Help desk confirmed that.