• Hello

    I would like some help setting up my site. https://www.archthoughts.gr
    I came across the following issues
    1) I have downloaded jetpack to use a logo on the homepage, but I need the logo smaller and to align with the menu.
    The other option is to place the logo on the centre. And the menu on the centre as well. How is that possible?
    2) I would like to use a gallery as it is used on libra demo here https://libredemo.wordpress.com
    3)How do I choose the information provided on each post? I mean date,category, author. How can I remove the author?

    Any help will be much appreciated
    Thank you guys!

Viewing 3 replies - 1 through 3 (of 3 total)
  • I have downloaded jetpack to use a logo on the homepage, but I need the logo smaller and to align with the menu.

    You should be able to use some CSS to change the maximum size and the alignment of your logo – but you’ll also need to adjust the alignment of the menu a bit.

    
    /*Smaller logo*/
    @media screen and (min-width: 45em) {
      .site-logo {
          max-width: 200px;
      }
    }
    
    /*Move logo to right, above navigation*/
      body:not(.sticking) .site-branding {
          float: right;
          width: auto;
    }
    
    @media screen and (min-width: 70em) {
      body:not(.sticking) .main-navigation {
          width: 100%;
      }
    }

    I’ve used body:not(.sticking) to prevent these changes from impacting the layout of the header when scrolling. The transition will look a little different, now that the logo is moving across the page ??

    I would like to use a gallery as it is used on libra demo

    Is this they gallery you mean?
    https://libredemo.wordpress.com/2011/07/07/bold-color/

    Jetpack can enable those for you ??
    https://jetpack.com/support/tiled-galleries/

    Make sure you have ‘Tiled Galleries’ turned on under Jetpack > Settings > Appearance.

    How do I choose the information provided on each post? I mean date,category, author. How can I remove the author?

    CSS can do that, too. Using my browser inspector, I’m able to identify the author name, and then hide it:

    .entry-meta span.byline {
       display: none;
    }
    

    Let me know how it goes!

    Thread Starter spitikos

    (@spitikos)

    Hey Chad

    Thank you so much for the help!
    I will keep you posted

    Cheers!

    You’re welcome!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Libre theme multiple issues (logo/ spacing/ gallery)’ is closed to new replies.