Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #432103

    Hi there

    Love this theme, thank you.

    I have three issues I hope you might be able to help me with:

    1.) When viewed on an iPad/iPad emulator the header text in the middle column on my homepage is cutting off. It should say ‘TABERNACLE’ but currently says ‘TABERNA’.

    2.) Again, when viewed (horizontally) on an iPad/iPad emulator, the menu is cutting into the logo. When viewed vertically it works fine, defaulting to the responsive menu.

    3.) I’m also using an easy slider on the homepage, but the caption title and text does not seem to be responsive on either tablet or smartphone. Is there anything I can add to the custom CSS as a work around for this?

    Many thanks in advance for your help.

    A…

    #432620

    Hey annekindlemix!

    Thank you for using Enfold.

    1.) You can adjust the font size on smaller screen sizes:

    @media only screen and (max-width: 989px) {
    #top #wrap_all .header_color h2, #top #wrap_all .main_color h2, #top #wrap_all .alternate_color h2, #top #wrap_all .footer_color h2, #top #wrap_all .socket_color h2 {
      font-size: 18px;
    }}

    2.) Select the second option in the Enfold > Header > Mobile Menu > Header Mobile Menu activation setting.

    3.) The slider captions resized properly when I checked it. Please provide a screenshot. You can use css media queries if you want to decrease the font size of the captions.

    Best regards,
    Ismael

    #434251
    This reply has been marked as private.
    #434258
    This reply has been marked as private.
    #435180

    Hi!

    1.) Try to add an !important into Ismael’s code:

    @media only screen and (max-width: 989px) {
    #top #wrap_all .header_color h2, #top #wrap_all .main_color h2, #top #wrap_all .alternate_color h2, #top #wrap_all .footer_color h2, #top #wrap_all .socket_color h2 {
      font-size: 18px !important;
    }} 
    

    Clear browser cache and refresh your page a few times afterwards.

    2.) Well, your menu is just too large for an iPad, but you could try to modify the width and position of your logo, so you gain more space. Here a code only for iPad landscape view:

    @media only screen 
      and (min-device-width: 768px) 
      and (max-device-width: 1024px) 
      and (orientation: landscape) {
    div .logo {
    left: -44px;
    max-width: 31px;
    }}
    

    Adjust “left” and “max-width” values as needed.

    Best regards,
    Andy

    #435188

    Hei Huys, my webinspector isn´t working actually any more.

    wasn´t there a class like (Ipad), that you entered in the body class as you doing it with the ie8 class?

    #435976

    Hey!


    @hunter74
    : I’m sorry but I’m not sure I understand you correctly. Can you please explain it a bit? A screenshot will help. If you’re referring to the custom html class when a user is viewing on an ipad, you can use the avia-ipad class attribute.

    Regards,
    Ismael

    #435985

    yes that´s what I´m looking for. .avia-ipad (for making special customicing)
    So I can exclude my own Javascript detection :-).

    But Is there something for iphone as well?

    #435989

    Hi!

    Yes, there “.avia-iphone” as well :)

    Regards,
    Yigit

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