• Resolved beardybum

    (@beardybum)


    Hi,

    This has probably already been answered, I tried looking but couldnt find anything.

    I managed to increase the width of the content by using the following css code:

    .entry-container {
    padding: 0 5% !important;
    }
    .entry-content img.full-width {
    width: 111.2% !important;
    left: -5.6% !important;
    }

    And this is awesome!

    But I was just wondering if it was possible to increase the overall size? Or maybe just increase the size of the feature image?

    I have the full-width version of tracks 🙂

    Thanks a lot! 🙂

Viewing 10 replies - 1 through 10 (of 10 total)
  • Theme Author Ben Sibley

    (@bensibley)

    Thanks so much for upgrading!

    By the overall size, I’m not quite sure what you mean. I’m going to provide two solutions here, and let me know if this is what you’re looking for.

    You can use this CSS to make the container with all the content wider:

    #main {
      width: 95%;
    }

    And this code can be used to reduce the max-width on the layout, so it can become much wider on larger screens:

    #site-header .container,
    #main,
    .entry {
      max-width: 2000px;
    }
    .entry {
      width: 100%;
    }
    Thread Starter beardybum

    (@beardybum)

    You are a god. It worked perfectly, thank you very much! 🙂

    Thread Starter beardybum

    (@beardybum)

    Oh, also, on the side, the ‘categories’ bit didn’t move, any way to move this to the left a bit more?

    Thank you 🙂

    Hello,

    I would love to do the same to my page http://www.kolibrifestivaali.org/

    I pasted the code you mentioned on edit CSS, CSS Stylesheet Editor, saved but didnt work.

    Am i missing something?

    Theme Author Ben Sibley

    (@bensibley)

    Haha you’re welcome 🙂

    The code is a bit tricky, but this should work for moving over the categories:

    @media all and (min-width: 68.75em) {
    
      .entry-meta-bottom.float .entry-categories, .entry-meta-bottom.float .entry-tags {
        padding-left: 2%;
        width: 14.11%;
      }
    }

    If you want to play around with the values, decreasing the width is going to move it further left since the text is right-aligned.

    @missisquerdo this forum is only for the Tracks theme. Here is the support forum for the Oxygen theme: https://wordpress.org/support/theme/oxygen

    Thread Starter beardybum

    (@beardybum)

    I stand correct, you are a god. Worked perfectly, thank you very much! 😀

    Theme Author Ben Sibley

    (@bensibley)

    You got it 🙂

    Posted it there also Ben, waiting for a reply.

    Thank you 🙂

    I can’t get it to work either. I’ve tried adding it to the CSS, to the CSS box in the “customize template” area, and directly to the pages and posts. But nothing changes.

    I want to widen the content area of the posts and pages. In other words, I want my text and images to be able to fill up more of the white space widthwise. I feel like my images within the body of my posts and pages are being squeezed.

    I too have purchased the wide-width format for the featured images.

    Theme Author Ben Sibley

    (@bensibley)

    Please add the above CSS to the “Custom CSS” section in the Customizer (Appearance > Customize). Once added there, it should take affect right away.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Make the entire page wider?’ is closed to new replies.