Changing width of a static page & Header Height in Ryu Theme

  • Unknown's avatar

    Hello,

    I am trying to adjust two things in my wordpress theme – I’ve had success with other blogs, but this theme is bettering me.

    1. I would like to make the text of the page wider, possible stretch the width of the page.
    2. I also removed a header image/text and there is now too much blank space at the top of the page – I am unsure how to remove this.

    Finally – I’d ideally like to move the dropdown menu tab at the top of the page to be aligned to the right rather than in the middle, if that is possible too.

    Any help is appreciated.
    Thank you in advance.

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Okay, I’ve removed the header/masthead from the page but still trying to remove the blank space at the top of the page.

  • Unknown's avatar

    Hello,

    Something like this will decrease the “blank space” on top of the page:

    .hentry {
    	padding-top: 10px;
    }

    Play around with the number to increase/decrease the spacing. The original value is 102px.

  • Unknown's avatar

    That’s super helpful. Thanks!
    Related: is there a way to adjust the spacing between the page headline and the body text too?

  • Unknown's avatar

    Something like this will make the space closer:

    .entry-content {
        margin-top: 0px;
    }

    You can also use negative value (-10px, for example), if you want to make them even closer.

  • Unknown's avatar

    Thank you – this is what I was looking for. I appreciate your help.

    The last thing I’m trying to tweak is probably unique to the theme I’m using. I’m wondering if there is a way to move the tab that pulls down the extra info at the top of the page to the left or the right… I am assuming I want to do this by percentage so it is consistent across different browsers/devices.

  • Unknown's avatar

    Hi, this would move the icon to the left, and it should work well with all devices.

    #triggers-wrapper {
        text-align: left;
    }

    If you want it on the top right, you can change left to right.

  • Unknown's avatar

    That worked perfectly.

    Thank you so much for your help (everyone). The WordPress community rocks!

  • Unknown's avatar
  • The topic ‘Changing width of a static page & Header Height in Ryu Theme’ is closed to new replies.