Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #705506

    Hi,
    the design of my website http://www.promissed.org does not fit to smartphones. The pics are half shown… what to do?
    This is my first enfold page …
    Thank you for your kind support
    Ulrike

    #705515

    Hey dekiert,

    Please go ahead and Install
    https://wordpress.org/plugins/ricg-responsive-images/

    let us know if that will fix your issue.

    Thanks a lot

    Best regards,
    Basilis

    #706238

    Hi,
    I installed the plugin but it does not fix my issue.
    ;-(

    #706246

    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: 480px) {
    .avia-fullscreen-slider .avia-slideshow>ul>li { 
    background-position: 50% 50%; 
    }}
    

    Please make sure that > sign is not converted to – http://i.imgur.com/IDXRZQ3.png in Quick CSS field.

    Best regards,
    Yigit

    #706295

    No still same problem.
    Is it possible that I did something wrong with the pics enetering on my page.
    I worked with photoshop to arrange the right size, so that the pics fit into the desktop version?

    #706584

    Hi,

    If you want greater control of the image used for smaller devices you can add another color section to only show on mobile devices, and upload an image better adapted to that screen size. Give your color sections unique ID’s in the element options, then you can use CSS like this to show/hide them for the correct screen sizes:

    @media only screen and (min-width: 768px) {
    #section-desktop {
      display:block !important;
    }
    #section-phone {
      display:none !important;
    }
    }
    
    @media only screen and (max-width: 767px) {
    #section-desktop {
      display:none !important;
    }
    #section-phone {
      display:block !important;
    }
    }

    Best regards,
    Rikard

    #706638

    I did not get this.
    Is it possble to explain me that in german?

    #706963

    Hi,

    Yes, I can tag our german speaking moderator for the topic. Was there any particular part you didn’t understand? I can try to explain it in another way maybe.

    Best regards,
    Rikard

    #708832

    For me it is for sure easier in German. But please I need to fix this issue. I did not understand how to explain the pics in another colour section that they are only for smaller devices …..????

    #708833

    which unique id’s? Do I have to ad the IDs in the CSS then?

    #709008

    Hi,

    If you open the Color Section element in question you will see a field at the bottom of the element options called For Developers: Section ID, that is where you put in the ID. So if you are going to use the CSS I sent you, then you should paste section-desktop in the section you only want to display for large screens, and section-phone in the section you only want to show for small screens. Hope that makes sense :-)

    Best regards,
    Rikard

    #709215

    Finally…yes I’ve got it..thank you so much for your kindly support

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘My enfold website does not fit to a smartphone’ is closed to new replies.