Logo resize

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #20171
    khun
    Customer

      I add the logo and it i resize when i scroll my page. I want to make my logo static.

      #20172
      khun
      Customer

        Even I change the css code in treat
        .header-image .light .site-title > a {
        height: 56px;
        }
        or remove it it still not work
        Check my site
        http://bestgr9.com/

        #20184
        khun
        Customer

          Homepage when we sroll down our menu is move this i also want to fixed header and static

          #20185
          Wes
          Moderator

            What size do you want your logo to be exactly?

            In Genesis Themes you have to adjust the Header/Logo size in the functions.php file first to the exact size you want your logo to be. Next you would upload your image (without cropping it). Then you can make CSS modifications to it if it needs to be adjusted a little.

            #20187
            khun
            Customer

              It is 600 x 30. I dnt want to see it resize and i want it fix static on menu.

              #20188
              khun
              Customer

                I use transparent background with white text so when i school down to section that has background white i dnt see my logo.

                #20190
                Wes
                Moderator

                  It’s hard to see what was changed in the CSS because you’re using the CSS minifier. Is it possible to turn that off temporarily while we look at the code to fix the issues? That would make it much easier to see what’s going on in the CSS.

                  If you remove the top: 20px; from .header-image .site-title > a in your CSS then it will move the logo back up inside the Black header area –

                  .header-image .site-title > a {
                      background-size: contain !important;
                      display: block;
                      height: 60px;
                      text-indent: -9999px;
                      position: relative;
                      top: 20px;
                  }

                  Then once you scroll down the logo won’t overlap outside the header area into the white space of other sections.

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