• Hi,

    I was wondering if anybody could possibly help me out. I am using the theme gallery. Essentially it shows a thumbnail on the home page, and then it goes to the post when you click on it. But on the post page, it is pushing my post to the right side of the screen. My site is https://www.blobnation.com …if you click on a thumbnail on the homepage, it will go to a page, and show how everything is pushed to the right. Does anyone know how to fix this, and get all of my content to cover the whole page, and not just the right side?

    Thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Edit style.css:

    .single .entry-content {
    display:inline;
    float:left;
    margin:20px 0 0 550px;
    width:385px;
    }

    and remove float:left;.

    Thread Starter plutostapler

    (@plutostapler)

    Wow thank you so much. Any idea how to make the comment section go to the left as well? I tried to use the same sort of idea, but couldn’t figure out what I needed to change.

    Thanks!

    #respond {
    border-top:1px solid #141414;
    float:right;
    margin-bottom:22px;
    overflow:hidden;
    padding:0;
    position:relative;
    width:390px;
    z-index:4;
    }

    Remove float:right;.

    Thread Starter plutostapler

    (@plutostapler)

    wow pretty simple

    Thank you so much for the help!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to fix posts in gallery theme’ is closed to new replies.