This thread is over two years old and may be outdated. Please create a new thread if you need help, or email us if you have an active Premium license.

Replies

15
  1. Keith McCullen 11 years, 1 month ago

    Selecting the notification for new comments. Thanks in advance.

  2. Andrew Misplon Staff 11 years, 1 month ago

    Hi Keith

    It’s a bit hard to make out what’s going on in the screenshot. Try this under Appearance > Custom CSS:

    /* Logo */
    header#masthead.masthead-logo-in-menu .logo {
    float: none;
    }
  3. Keith McCullen 11 years, 1 month ago

    Hey Andrew,

    That seems to have worked (with moving the menu to its own line, but the logo went back to a small size. How can I fix that?

    Thanks

  4. Andrew Misplon Staff 11 years, 1 month ago

    Try adding the following:

    /* Vantage Remove Logo in Menu img constraint */
    header#masthead.masthead-logo-in-menu .logo > img {
    max-height: none !important;
    }
  5. Keith McCullen 11 years, 1 month ago

    Nice, there we go. Just one more question and I should be just about done. Is there a way to keep the menu on the second row a little skinnier?

    Thanks, Andrew.

  6. Andrew Misplon Staff 11 years, 1 month ago

    Sure. Menu padding can be set from the Customizer at Appearance > Customizer > Menu. Try that.

  7. Keith McCullen 11 years, 1 month ago

    You’re the best. Thank you so much.

  8. Andrew Misplon Staff 11 years, 1 month ago

    For sure, glad that helped.

  9. Keith McCullen 11 years, 1 month ago

    Andrew, I had a question that is unrelated to the stuff above. Is it okay if I ask you in here and avoid creating a new thread?

  10. Andrew Misplon Staff 11 years, 1 month ago

    Go go

  11. Keith McCullen 11 years, 1 month ago

    Okay, this is something that I just noticed.

    I know that the theme (or WP, for that matter) allows you to set a featured image that appears as a thumbnail to the left of the post when viewing the post preview. Is there a way that I can keep this thumbnail, but not have the featured image blown up into such a huge image size on the actual post page?

    If I cannot avoid the image showing up on the actual post page on top of the text, can the featured image be right aligned with the text? The image doesn’t show up in the editor, so I doubt this could be done.

  12. Andrew Misplon Staff 11 years, 1 month ago

    Theme Settings > Blog > Featured Image, if you un-check that you’ll turn off featured images just for the single post page, that’s one option. We unfortunately don’t have an option to align it with the text at the moment, but you can try this CSS to make it smaller:

    /* Set a max-width for the single post featured image */
    .single .entry-thumbnail img {
    max-width: 50%;
    }

    Adjust percentage as required.

    OR to center and make smaller:

    /* Set a max-width for the single post featured image */
    .single .entry-thumbnail img {
    margin: 0 auto;
    max-width: 50%;
    }
  13. Keith McCullen 11 years, 1 month ago

    Awesome, lightning fast answers. That should be it, Andrew.

    Take care

  14. Andrew Misplon Staff 11 years, 1 month ago

    No problem. Let us know if we can help further.

    The alternative, is changing the featured image sizes with:

    https://wordpress.org/plugins/simple-image-sizes/

    And running regen after:

    https://wordpress.org/plugins/regenerate-thumbnails/

    I’ll fix my Custom CSS above now. The closing code tag shouldn’t go in your Custom CSS.

  15. Andrew Misplon Staff 11 years, 1 month ago

    Cool, CSS fixed now.

Replies on this thread are closed.

Please create a new thread if you have a question, or purchase a SiteOrigin Premium license if you need one-on-one email support.

Have a different question or issue?

Start New Thread