-
Andrey4o
ParticipantIf it is possible to remove border left and right for post. Something like this: http://photography.nationalgeographic.com/photography/photo-of-the-day/river-forest-tar-mine-lenz/
Thank you!
Andrey Andreev
http://www.andrey-andreev.comDaniel Tara
KeymasterFor single posts, in the post editor you have in the right-hand column a meta box titled “Page Design”. From that box select “Full Screen” and save the post.
Also see this post.
Andrey4o
ParticipantHello,
I want to removethe border in the box style posts. Is it possible?
Thank you!
AndreyDaniel Tara
KeymasterAdd this to your custom styles:
.entry-content a img { padding: 0; box-shadow: none; }
Andrey4o
ParticipantThank you,
But I tried yesterday and it does not work, i tried to write margin-left: -30px, this only move my picture left without resizing it. I just want to use whole box from end to end πDaniel Tara
KeymasterThe code is correct. Are you sure you added it to custom CSS? Is it printing in the page’s <head> tag? You can search style.css for
.entry-content a img
and apply the change directly there.Andrey4o
ParticipantHello,
Thank you for your great support and for losing your time with me:)
So, I tried again, now my page is with padding: 0 But not is that i whant. I Modified my page to show you what i want π
But it was made with bad modifications. π I write margin-lest for pictures -30px and
img,
video {
max-width: 105%;
height: auto;
}
It is not good π
Sorry that I bother you.
AndreyDaniel Tara
KeymasterTry this:
img, video { max-width: calc(100% + 60px); margin-left : -30px; margin-right: -30px; height: auto; }
You must be logged in to reply to this topic.