Viewing 19 posts - 1 through 19 (of 19 total)
  • Author
    Posts
  • #502406

    Hi! I have issues with Ipad not showing the text i have in widget (links) they are “cut off”

    Is it possible to have enfold to resize them on ipads ? I do want the this size for desktop.

    Image

    #502471

    Hey Paul,

    Looks like there’s not enough space for the text there, would you like them to display 100% of the width or do you want to decrease the font-size?

    Regards,
    Rikard

    #502485

    Is it possible to have them decrease the font size on ipad so the whole text is visible ? This without making the text smaller on desktop ?

    Thanx

    #502537

    Hey,

    Yes it’s possible, but in order for everything to fit in portrait format the headers will be very small. Please try the following in Quick CSS:

    @media only screen and (max-width: 1024px) {
    #footer .textwidget h3 {
        font-size: 16px !important;
    }
    }

    You might need to decrease the value 16.

    You might want to consider doing the abbreviation for the street names like you have done for the last one. Another option would be for the widgets to span 50% each for ipad size?

    Thanks,
    Rikard

    #502543

    Hi!

    Thank you!

    Is there a way to have ipads/tablets display the page as a phone would with jus one column width?

    This regarsless of orientation of the ipad.

    I find the phone layout much eaier to read and looks better then ipads in between desktop and mobile layout.

    Thanx!

    #502686

    Hey!

    Please add following code to Quick CSS

    @media only screen and (max-width: 1024px) {
    #footer .av_one_fifth {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }}

    If you do not want to have your footer text center aligned, please remove “text-align: center;” line from the code

    Regards,
    Yigit

    #502724

    Great!! Thank, worked very well!
    One last thing, can i add something so that the mobile menu is always shown instead of the desktop menu when the ipad is in landscape orientation i switches to desktop menu (i don’t want that)

    Thanx!

    #502727

    Hey!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    @media only screen and (max-width: 1024px) {
    #mobile-advanced, #advanced_menu_toggle, #advanced_menu_hide { display: block; }
    nav.main_menu { display: none; }}

    Cheers!
    Yigit

    #502740

    Hi!

    After browsing the ipad it seems it’s only the front page that is display as one column ?

    I want the ipad to show the whole website as the iphone 6, is that possible ?

    Thanx!

    #502742

    Hi!

    Please try adding !important rule as folowing

    @media only screen and (max-width: 1024px) {
    #footer .av_one_fifth {
        width: 100% !important;
        margin-left: 0 !important;
        text-align: center !important;
    }}

    It should work globally

    Best regards,
    Yigit

    #502760

    I replaced the previous one with the last one you posted, but i don’t see a difference ? Maybe caching issue ? Takes a little while ?

    #502769

    Hey!

    Seems so. Please flush browser cache and refresh your page a few times. I checked your page and it does work fine on my end – http://i.imgur.com/8mAf9f3.jpg

    Cheers!
    Yigit

    #502789

    Yes the front page and widget area works fine. i however want the whole page to be displayer as single column like on the iphone ,this way i don’t have to worry about titles being to long etc.

    #502796

    Hey!

    Oh you mean you would like to display all column elements fullwidth on ipad? If so, please add following code to Quick CSS

    @media only screen and (max-width: 1024px) {
    .flex_column {
        width: 100%!important;
        margin-left: 0!important;
    }}

    Cheers!
    Yigit

    #502856

    Yes, thanx! Should this replace the previous code or just add ?

    #502859

    Hey!

    It can replace this code – https://kriesi.at/support/topic/problem-with-widget-text-on-ipad/#post-502742 :)

    Cheers!
    Yigit

    #502874

    Thanx!

    I know I’m a pita..:-) But i noticed you can sometimes swipe to the left and show the menu (very small) is there a way to prevent this ?

    Sample

    #502889

    Hey!

    Please add following code to Quick CSS as well

    #wrap_all {
    position: relative !important;
    }

    Cheers!
    Yigit

    #505497

    Thanx, worked very well!

Viewing 19 posts - 1 through 19 (of 19 total)
  • The topic ‘Problem with widget text on ipad’ is closed to new replies.