![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
![[community profile]](https://www.dreamwidth.org/img/silk/identity/community.png)
I've recently switched to using one of the Abstractia themes (Deep Forest) and I've mostly managed to adapt it how I want.
My feed entries still don't look quite right though, and I was hoping that someone might be able to help me sort them out. I'm using custom CSS adapted from previous entries here to make all feed entries have a userpic and to make them a fixed height.
There are two problems that I'm not sure how to fix:
1. The style has a double border round the entry userpics - a thin line round the outside of the black box - and I'm not sure how to replicate that.
ETA - the thin line border isn't that obvious - I hope you might be able to see the difference in these two screen shots.

On the right, there's a line border round both the heading and the userpic, on the left, it's only round the heading.
2. The normal entries wrap nicely round the userpics, while the feed entries almost touch them and then continue straight down the page, as you can see on my reading page. I'd like to get them to wrap as well, if it's possible. FIXED thanks to
foxfirefey
Thank you for any help you can give me.
My feed entries still don't look quite right though, and I was hoping that someone might be able to help me sort them out. I'm using custom CSS adapted from previous entries here to make all feed entries have a userpic and to make them a fixed height.
.journal-type-Y .userpic {
background: url(link to userpic) center no-repeat;
width:100px;
height:100px;
float: left;
margin-top: -1.0em;
border: .50em solid #000400;
}
/* max-height for syndicated journals on reading page */
.page-read .journal-type-Y .entry-content {
margin-top: 1.5em;
max-height: 30em;
overflow: auto;
}
There are two problems that I'm not sure how to fix:
1. The style has a double border round the entry userpics - a thin line round the outside of the black box - and I'm not sure how to replicate that.
ETA - the thin line border isn't that obvious - I hope you might be able to see the difference in these two screen shots.


On the right, there's a line border round both the heading and the userpic, on the left, it's only round the heading.
2. The normal entries wrap nicely round the userpics, while the feed entries almost touch them and then continue straight down the page, as you can see on my reading page. I'd like to get them to wrap as well, if it's possible. FIXED thanks to
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Thank you for any help you can give me.
no subject
Date: 2012-07-29 08:37 pm (UTC)no subject
Date: 2012-07-29 09:41 pm (UTC)I'll try and put some screen-shots in of the border to show what I mean.
no subject
Date: 2012-07-29 08:40 pm (UTC)border-color: rgba(70, 70, 70, 0.25);
to the top batch of code it should bring it back, but I'm not 100% certain on it (it's definitely why it's there in the main layout).
The reason the wrapping doesn't work for the feed entries is because on a normal entry there's actually a picture there, whereas for feed entries we're telling the browser to put something there that actually isn't there, and I never figured out how to tell the other elements to flow around the non existent thing, but if anyone knows how that'd be cool.
no subject
Date: 2012-07-29 09:52 pm (UTC)Unfortunately the extra line you've given me doesn't work - oddly enough, if you put it after the
border: .50em solid #000400;
line, it makes the black border a lighter colour, but if you put it before it doesn't seem to do anything.no subject
Date: 2012-07-29 09:58 pm (UTC)no subject
Date: 2012-07-29 10:48 pm (UTC)