Photos

Viewing 11 posts - 1 through 11 (of 11 total)
  • #19290
    Andrey4o
    Participant

    If 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.com

    #19291
    Daniel Tara
    Keymaster

    Are you referring to page borders, image borders or caption borders?

    #19292
    Andrey4o
    Participant

    I think – page borders:)

    #19293
    Daniel Tara
    Keymaster

    For 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.

    #19294
    Andrey4o
    Participant

    Hello,
    I want to remove null the border in the box style posts. Is it possible?
    Thank you!
    Andrey

    #19295
    Daniel Tara
    Keymaster

    Add this to your custom styles:

    .entry-content a img {
    	padding: 0;
    	box-shadow: none;
    }
    #19297
    Andrey4o
    Participant

    Thank 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 πŸ™‚

    #19302
    Daniel Tara
    Keymaster

    The 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.

    #19309
    Andrey4o
    Participant

    Hello,
    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 πŸ™‚ null
    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.
    Andrey

    #19310
    Daniel Tara
    Keymaster

    Try this:

    img,
    video {
    	max-width: calc(100% + 60px);
    	margin-left : -30px;
    	margin-right: -30px;
    	height: auto;
    }
    #19319
    Andrey4o
    Participant

    Nope, it is not that I looking for. But, doesn’t metter. πŸ™‚ I like the theme very much! πŸ™‚
    You are great!
    Greetings from Bulgaria!
    Andrey

Viewing 11 posts - 1 through 11 (of 11 total)

You must be logged in to reply to this topic.