nimueth: (tfa // huh?)
Nimueth ([personal profile] nimueth) wrote in [community profile] style_system2019-01-20 08:08 pm

Line between entries, and padding under the navigation strip.

Hello again, hopefully I'm not starting to be a torn in your sides. I managed to fully restore my layout to the way it was before (saved the CSS, so I won't be making the same mistake again!), but I'd like to make a couple small changes.

One is to remove the thin lines under the entry title and above the metadata. That's the entry border colour in the wizard, and I could get rid of it by changing it to white, but the problem is it also removes the thick line that separates the entries, which I want to keep. It doesn't have to be that thick or even a line, (the original on LJ was 1 pixel and dashed) I just want something between the entries.

The other would be to add some padding under the navigation links, because it looks a little clustered right now (again, see what I mean on the LJ version for reference).

I'm using Dusty Foot, if that's relevant.

Thank you in advance!
witchka: ((st:dsc) michael ; vulcan)

[personal profile] witchka 2019-01-20 09:07 pm (UTC)(link)
In

.metadata.bottom-metadata

remove or make this 0px/white:

border-top: 1px solid #dddddd;

and in

.entry-poster

remove or make this 0px/white:

border-bottom: 1px solid #dddddd;

To move your page down in #canvas change margin-top to whatever you like.
witchka: ((reign) mary ; soft smile)

[personal profile] witchka 2019-01-20 09:29 pm (UTC)(link)
Perhaps you want the #content div, then, same principle applies. That does leave you with a gap, though, so maybe also add background: #ffffff; to #content

eta: add the background to #inner, actually.
Edited 2019-01-20 21:31 (UTC)
witchka: ((st:dsc) michael & tilly ; disco buddies)

[personal profile] witchka 2019-01-20 09:33 pm (UTC)(link)
#content {
margin-top: 20px;
}

#inner {
background #ffffff;
}
witchka: ((reign) mary ; looking down)

[personal profile] witchka 2019-01-20 09:41 pm (UTC)(link)
oh it might be .inner not #inner
witchka: ((titans) dawn ; radiant)

[personal profile] witchka 2019-01-20 09:50 pm (UTC)(link)
.tag {
border-bottom: 0px solid #ffffff;}