Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #991080

    Hey guys. On smaller screens and apple devices the header behaves weired.
    I have links to the screenshots and the site attached in the private field.
    Happy for any hints or help!
    Thank you!

    #991267

    Hey fabienneBESD,
    Thanks for the images, what I see is your text logo & sub-text is too big for mobile, I suggest using a media query in your css to make it a little smaller for mobile only.
    You have two options, first is to make both logo & sub-text smaller to fit, but both would be very small.
    Second, hide the sub-text on mobile & make the logo slightly smaller, but it would still look large.
    The only issue I for see is the sub-text is inside the H1 and link of the logo class, so I may want to add another class to the title text to target it better, depending on your choice.

    Please let us know if either of these options will work for you and include a admin login so we can assist.

    Best regards,
    Mike

    #991272

    Is it possible to make the logo smaller and make the subtext to break on small screens?
    LOGOTEXT
    subtext
    subtext
    subtext
    I inlcuded an adminaccess in the prvate content
    Thank you so much for your help!

    #991313

    Hi,
    I added this css to your Quick CSS:

    @media only screen and (max-width: 767px) { 
    .logo h1 {
    font-size: 14px !important;
    margin-bottom: 0px !important;
    padding-top: 10px !important;
    }
    #top .logo .subtext {
        font-size: 14px !important; 
        width: 70% !important; 
        left: 32px !important; 
        top: 20px !important; 
    }
    }

    the after clearing my browser cache, see results in screenshot in Private Content area.
    Please try clearing your browser cache a few times.

    Best regards,
    Mike

    #991317

    Thanx! This is already much much better. is it possible to have the last word not disappear under the content box?

    #991324

    Hi,
    Please try changing the subtext font-size to: 12px
    like this:

    @media only screen and (max-width: 767px) { 
    .logo h1 {
    font-size: 14px !important;
    margin-bottom: 0px !important;
    padding-top: 10px !important;
    }
    #top .logo .subtext {
        font-size: 12px !important; 
        width: 70% !important; 
        left: 32px !important; 
        top: 20px !important; 
    }
    }

    Best regards,
    Mike

    #992841

    Hi Mike, thank you for your work so far.
    My friend says, the website works ok, unless she opens it in any Mac devise, then the problem is still ocurring (I explained to her in detail how to empty browsercache, I hope she did that!).
    Is it possible, that there could be a problem that only occurs on Apples?

    Also I think it best and easiest to let the subtotle disappera completely on smaller screens. What do I need to do to make the line
    ‘Subtile Dominanz – frivolerotisches Spiel – klinische Therapie’ disappera completely on smaller Screens?
    I guess this should solve the problem.

    Thank you!

    #993077

    Hi,
    It is possible that this only happens on Apples, but I only have a PC, so I would have to ask someone else from the team to take a look at the page.
    But we can easily hide the sub-title on mobile devices, which maybe a better solution.
    Try adding this css to your Quick CSS to do so, I also added some css to make the title a little bigger and center the title vertically:

    @media only screen and (max-width: 767px) { 
    #top .logo .subtext {
    display: none !important;
    }
    #top .inner-container .logo h1 {
        font-size: 20px !important;
        padding-top: 30px !important;
    }
    }

    Best regards,
    Mike

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