Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #691125

    Good Morning,

    On the site URL below (private content) the contact text is cut off when viewed on an iPad in both portrait and landscape. The website width is set to 1310px. I’ve used the following CSS to reduce the size of the footer, unsuccessfully:

    @media only screen and (max-width: 1024px) {
    #footer .container {
    max-width: 90%;
    }}

    Many thanks

    #691192

    Hey csmwebdesign,

    Try adding the “!important” tag after the width value. So now your code should look like this:

    
    @media only screen and (max-width: 1024px) {
    #footer .container {
    max-width: 90% !important;
    }}

    Let me know how it goes!

    Best regards,
    Jordan

    #691225

    Hi Jordan

    Thanks for your advice. Unfortunately the contents is still cut off, and looks slightly worse.

    Regards

    #692268

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

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

    Best regards,
    Yigit

    #692431

    Perfect, thanks as always Yigit

    #692443

    Hi,

    You are welcome!
    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Best regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Footer width on iPad cuts off text’ is closed to new replies.