Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #1349321

    How can I move my logo down a little to look like my mockup? I just need it to be moved down over the top section a little.

    Live site – http://balrajt9.sg-host.com/

    Mockup – https://ibb.co/bj4vmYm

    I am using the following CSS to put the logo in the middle of the menu items
    /*————————*/
    /* CSS – Logo center split menu
    /*————————*/

    @media only screen and (min-width: 780px) {
    /*In the below code nth-child(x) the value of x should be half the number of total menu items*/
    #top #header .av-main-nav li:nth-child(2) {
    /* Adjust the width of the logo */
    margin-right:220px;
    }

    #header .main_menu {
    /*background: gold;*/
    width: 100%;
    left: 54%;
    transform: translateX(-50%);
    }

    .av-main-nav-wrap {
    left: 48.5%;
    transform: translateX(-50%);
    }

    #header .logo {
    left: 50%;
    transform: translateX(-50%);
    z-index:999;
    }

    #header .logo img {
    top: 50%;
    transform: translateY(-50%);
    max-width: 160px;

    }
    }

    #1349389

    Hey,

    Thanks for contacting us!

    Your website redirects me to the link I attached in private content field below so I could not check your website but referring to this post should help – https://kriesi.at/documentation/enfold/logo/#overlap-logo-and-page-content :)

    Best regards,
    Yigit

    #1349410
    #1349418

    Hey,

    I tried it and it redirects me to the same link.

    Have you tried the solution I shared in my previous reply?

    Regards,
    Yigit

    #1349419

    That is very weird

    I have other tickets open with other Moderators and they are not experiencing this issue.

    Can another Moderator take a look at this ticket?

    #1349473

    Hi,

    Please try the following in Quick CSS under Enfold->General Styling:

    span.logo {
      margin-top: 50px;
    }

    Best regards,
    Rikard

    #1349539

    Thanks

    How can I achieve the white border around it like the mockup? Does that have to be part of the logo image?

    Mockup – https://ibb.co/bj4vmYm

    #1349567

    Hi,

    It might be possible with CSS, but it’s easier if you add it to the actual image.

    Best regards,
    Rikard

    #1349598

    It is almost perfect except it is now being hidden behind the contents

    here is the css i used

    #header .logo img {
    top: 50%;
    transform: translateY(-50%);
    min-width: 200px;
    min-height: 200px;
    }

    How do I place it above the other contents? Is it something to do with z-index?

    Thanks

    #1349638

    Hi,

    I couldn’t get it working with z-index unfortunately, but it looks like it will display everything if you make it slightly smaller. You could try to adjust the transform and min-height values.

    Best regards,
    Rikard

    #1349717

    Unfortunately making it smaller does not look good

    #1349734

    Hi navindesigns,

    Please try to replace this code:

    #header .logo img {
        top: 50%;
        transform: translateY(-50%);
        min-width: 200px;
        min-height: 200px;
    }

    with:

    #header .logo img {
        top: 50%;
        transform: translateY(-57%);
        min-width: 200px;
        min-height: 200px;
    }
    
    #header .logo {
        height: 180px;
        margin-top: 29px;
    }

    Best regards,
    Nikko

    #1352588

    Thanks guys

    This looks good but there is one minor issue now. My dropdown menu is partially hidden behind the logo. Can the dropdown menu go over the logo?

    menu

    #1352592

    Hi navindesigns,

    You’re welcome. :)
    Please add this CSS code:

    #header .main_menu:hover {
        z-index: 1000;
    }

    Best regards,
    Nikko

Viewing 14 posts - 1 through 14 (of 14 total)
  • You must be logged in to reply to this topic.