Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #402883

    Hello, i have two questions.

    1. I need it that the Page Title and Breadcrumb also is sticky.
    How can I achieve this?

    2. I am using the following css code to overlap the logo.

    .logo, .logo a {overflow: visible;}
    .logo img {max-height: 150px !important;margin-top:-35px !important; }
    
    #top .logo img { max-height: 150px; }
    @media only screen and (max-width: 767px) {
         #top .logo img { max-height: 80px !important; margin-top:0px !important;}
    }

    If I scroll down, the logo is not small. Can we achieve this? And if so, how?

    Thanks

    #403570

    Hey suchfin!

    1. Try adding this to your custom CSS.

    .title_container {
      position: fixed;
      top: 115px;
      width: 970px;
      left: 50%;
      transform: translate(-50%);
      z-index: 999;
    }

    2. I’m not sure if that is going to be possible like that. You don’t have your header set to shrink so there is no way to target the shrinking logo when you scroll down the page.

    Best regards,
    Elliott

    #403817

    Hi Elliott, thanks the CSS is working.

    At 2. to the Logo… What I need to do to achieve this?

    Regards Rico

    #404299

    Hey Rico!

    What exactly do you mean by overlap? Could you elaborate a bit more what you want to do with logo please?

    Regards,
    Rikard

    #406520

    Hey, i’m using this code… that the logo is overlaping the second menu container.

    .logo, .logo a {overflow: visible;}
    .logo img {max-height: 150px !important;margin-top:-35px !important; }
    
    #top .logo img { max-height: 150px; }
    @media only screen and (max-width: 767px) {
         #top .logo img { max-height: 80px !important; margin-top:0px !important;}
    }

    All is working fine but now the logo is not minimize if i scroll down. How can i fix that?

    Regards

    #406630

    Hey!

    Please remove the code you added for overlapping logo and use following code instead

    strong.logo.bg-logo {
      top: 50px;
    }

    If that does not help, please elaborate on the changes you would like to make so we can provide you an accurate custom CSS code.

    Regards,
    Yigit

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