Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #942577

    Hi,
    I’ve been able to overlap the logo over the bottom of the header on desktop but it’s not overlapping on mobile. I’ve provided a link to the development website in the Private section.
    Are you able to provide some CSS so the logo overlaps on mobile too, please. Thanks in advance,
    Johnny

    #942748

    well as a participant as you are i do not see the private content – but it comes from the media query rule :

    @media only screen and (max-width: 767px) {
    .responsive #top .logo {
        display: table;
    }
    }

    try to set this in quick css ( guess an !important is necessary )

    @media only screen and (max-width: 767px) {
    .responsive #top .logo {
        display: block;
    }
    }

    you can see here a testpage: https://webers-testseite.de/cynthia/unite4-2/

    #942949

    Hi,

    Thanks for helping out @gunni007, did you try that out and did you have any luck with it @stormwebdesign?

    Best regards,
    Rikard

    #944097

    Hi @gunni007,
    Thanks for taking the time to post your thoughts. Much appreciated! However it doesn’t seem to fix the issue. On mobile, the logo is still located in the header. I’ve added some links in the Private section.
    Thanks again,
    Johnny

    #944332

    Sorry – no private links can be seen by me – i’m still a Participant as you
    my avatar/nick gives you contact info – so feel free to email me.

    #944456

    Hi Johnny,

    Thanks for the feedback, though I’m seeing the logo overlapping on mobile as well using Chrome. Could you post a screenshot of what you are seeing on your end and how to reproduce it please?

    Best regards,
    Rikard

    #944525

    Hi,
    Here are the Screen shots. I would like to have the logo overlap the main header area.
    IMG_1564 – Development Website
    http://79.170.44.86/ref-thewestparkhotel.com/wp-content/uploads/2018/04/IMG_1564.png

    IMG_1565 – How I want it to look
    http://79.170.44.86/ref-thewestparkhotel.com/wp-content/uploads/2018/04/IMG_1565.png
    Thanks again,
    Johnny

    #944529

    thats nice – but without a live link it does not work – to decide from a screenshot it is not possible.
    i had to see the dom structure and to be able to simulate changings on developer tools

    #944530
    #944586

    on my browser all is nice – with what kind of device you are looking to the dev. site ?

    ok on firefox with developer test devices – i see the problem:

    can you please replace your rule with:

    /* MOBILE LOGO */
    @media only screen and (max-width: 767px) {
    .responsive #top .logo {
        display: block !important;
        max-height: 120px !important;
        height: 120px !important;
    }
    }

    afterwards we see how to optimize the sizes

    #944587

    Hi. I’m viewing it on an iPhone 7.

    #944589

    But your very long menu should switch to hamburger a bit earlier. It overlaps the logo on f.e. ipad landscape

    #944590

    sorry my fault :

    /* MOBILE LOGO */
    @media only screen and (max-width: 767px) {
    	.responsive #top .logo {
    	display: block !important;
    	}
    	.responsive #top .logo img {
    	max-height: 120px !important; 
    	height: 120px !important; 
    	}
    }
    #944591

    @gunni007, you are a legend. Thanks so much. The menu now overlaps perfectly on mobile. Your time and support is much appreciated!
    Thanks again!!!

    #944593

    Why did you change floating behavior of logo?

    i think this will look better – aquidistant from the border with hamburger sign:

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

    And: PPS: the slider is still visible on very small screens when the fallback image is shown

    • This reply was modified 6 years, 7 months ago by Guenni007.
    #944817

    Hi,

    Thanks @guenni007 for helping out :-)

    Please let us know if you should need any further help on the topic or if we can close it @stormwebdesign.

    Best regards,
    Rikard

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