Hi, I’m trying to change the margin and the width of the 2/5 column, but only on post pages.
I’ve tried the code below, but that doesn’t do anything. Adding !important doesn’t help either.
.post div .av_two_fifth {
margin-left: 4%;
width:38.4%
}
I know I’m on the right track, since
.post div .av_two_fifth {
margin-left: 4%;
width:38.4%
}
Does work, but on the homepage as well, and I want to leave that page alone.
Any idea what I could change to get it to work?
Best, Haiko.
Hey rhae,
Could you please give us a link to your website, we need more context to be able to help you.
Best regards,
Victoria
Hello Victoria, see the private link. The first link is the home page, which I would like to keep intact, the second one is one of the post pages, which i would like to change (all the post pages, current and future ones).
Hi rhae,
Please try using code like this:
.single.single-post div .av_two_fifth {
margin-left: 4%;
width:38.4%
}
Best regards,
Victoria
Great, that works! Thanks a lot!
Best, Haiko.