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

    Just like the title says, what is the actual code to make the mobile logo bigger while keeping the logo on desktop as is?

    Our logo is 300×100

    When we view the site on mobile the logo shrinks down so small, it’s difficult to see.

    #946784

    Any help here?

    #946810

    it would be nice to see a link. Otherwise, it is purely speculative

    #946833

    I did provide a private link for them to review. Regardless, we just need the code to make the logo larger.

    #946835

    ok – than you had to wait til mods are here.

    #946982

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    @media only screen and (max-width: 767px) {
    .responsive .logo img {
        max-height:140px;
    }}

    Best regards,
    Vinay

    #946990

    That did not work, I even increased the max height and the logo does not display larger. Please send proper code to make the logo larger.

    #947376

    Vinay?

    #947747

    Hi,

    The height of the logo is adjusted proportionately to the width.

    I see the logo is much bigger in the mobile version now. You may not see the changes until the cached files are cleared in your browser.

    Please try to hard refresh by pressing Ctrl + Shift + F5 on your browser or press the F12 key to open chrome dev tools and right click on the refresh button and select “ Empty Cache and Hard Reload” and review the site again.

    Also, if a caching plugin is installed please check the plugin settings and empty the cache.

    Best regards,
    Vinay

    #948088
    This reply has been marked as private.
    #948586

    Hi vegaspro,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (max-width: 767px) {
      #av_section_1.avia-section-small .content {
        padding-top: 10px;
        padding-bottom: 10px;
      }
      #top #wrap_all  #av_section_1 .av-special-heading-tag {
          font-size: 18px;
      }
      #top #wrap_all .avia-button.avia-size-x-large {
          padding: 10px 22px 10px;
      }
      .responsive #top #av_section_1 .container .av-content-small {
        margin-bottom: 0;
      }
      #top #av_section_1 .flex_column.av_one_third.avia-builder-el-3.avia-builder-el-last,
      #top #av_section_1 .flex_column.av_two_third.avia-builder-el-1 {
        margin-bottom: 0px;
      }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #948681

    That did not work, it made it smaller

    #949116

    Help!

    #949411

    Hi,

    What do you see on your end? What device are you using? Please try this css code.

    @media only screen and (max-width: 767px) {
    .responsive #top .logo {
        height: 120px !important;
        width: 100%;
    }
    }

    Best regards,
    Ismael

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