Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #466730

    Hi,

    I added a widget to the header widget using the documentation here – http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/

    However on mobile devices or devices with smaller screens the second logo goes under or over the main logo.

    Overlay on Logo

    Please can you guide me on fixing this.

    Kind regards,

    Gideon

    • This topic was modified 9 years, 4 months ago by Gwellins.
    #467352

    Hi Gwellins!

    Thank you for using Enfold.

    The screenshot is not working. Please check. A link to the site will help. Try to use the Quick CSS field to change the position of the second logo on mobile device. You have to use css media queries in order to target smaller screens. http://www.w3schools.com/cssref/css3_pr_mediaquery.asp

    Best regards,
    Ismael

    #467360

    Hi Ismael,

    Thanks for the response.

    Sorry that the screenshot isn’t working. The site is advancedparking.co.uk. Could you give me some pointers please as my CSS isn’t the best.

    Kind regards,

    Gideon

    #468064

    Hey!

    Please add following code to Quick CSS

    @media only screen and (max-width: 1200px) {
    #header .widget {
      left: 50%;
    }}
    @media only screen and (max-width: 480px) {
    #header .widget {
      left: 69%;
    }}

    And then, Please go to Enfold theme options > Header > Mobile Menu > Header Mobile Menu activation and choose 990px.

    Best regards,
    Yigit

    #468068

    Hey!

    you would need to tell us what do you want to achieve instead. We can’t know that :). Do you want to remove one logo? if yes which one? do you want to decrease image size of logo? so many possible solutions, so just tell us what you want. Hopefully you like this solution:

    @media only screen and (max-device-width: 736px) {
    strong.logo {
    width: 35% !important;
    }
    .textwidget {
    width: 76%;
    margin-left: 126px;
    }}
    

    Regards,
    Andy

    #468089

    Thanks Andy,

    Problem with that code is that it changes the width of the pages. The pages are much thinner with the code implemented, even on a desktop.

    The ideal solution would be that the pages content does not change and goes by the general responsive rules but the 2nd logo moves under the main logo on mobile devices.

    Any thoughts?

    Kind regards,

    Gideon

    #468091

    Hey!

    Have you tried the code i posted – https://kriesi.at/support/topic/2nd-logo-responsive/#post-468064
    Alternatively, to remove second logo, you can use

    @media only screen and (max-width: 1200px) {
    #header .widget { display: none; }}

    Regards,
    Yigit

    #468095

    Hi Yigit,

    Thanks for the quick response.

    I tried the original code and instructions but that squished the content on the pages.

    I’d rather not remove the second logo on mobile screens but would like to move it under the logo.

    Kind regards,

    Gideon

    #468657

    Hi!

    It seems there is not enough space for both logos display either inline or as blocks on smaller screens, I’m not sure what layout you would prefer?

    Regards,
    Rikard

    #468731

    Hi Rikard,

    Thanks for the response. I’ve decided to just remove this logo on mobile screens.

    Kind regards,

    Gideon

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘2nd Logo Responsive’ is closed to new replies.