Site Titles and Home Page Image

  • Unknown's avatar

    Hi Guys,

    Couple of bits…

    1) How do I make my site title appear one line?
    2) When I reduce my browser window on a desktop my main images ‘leaks’ into the scroll bar on the right at various points. Is there a way to increase a buffer or space on that right side?

    Many thanks,

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

  • Unknown's avatar

    Sorry a third question…

    3) How do I have a page with my blog posts appear in the primary menu on the left?

    Many thanks,

  • Unknown's avatar

    Hi there, for #3, I’m assuming you want the “Articles” menu item to link to your blog page. To do that, go to Customize > Menus, open your primary menu, delete the “Articles” menu item and the add the Blog page to your menu. You can then open that Menu item and change the label to Articles if you desire.

    For #1 and 2, give this a try and see what you think.

    @media screen and (min-width: 900px) {
      .home #masthead {
        width: 320px;
      }
      .home #primary {
        width: calc(100vw - 320px);
      }
      .home #primary #main {
        margin-left: auto;
      }
      .home .alignnone {
        max-width: 100%;
        float: right;
        margin-right: 0;
      }
      .home .entry-content {
        margin-top: 70px;
      }
    }
  • The topic ‘Site Titles and Home Page Image’ is closed to new replies.