Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #1468115

    Hello Support,
    I have created a layer slider with one image and caption on the frontpage of my website. It looks just right on desktop but is totally cut off on mobile portrait view and covers the person in portrait orientation. How can I edit the size and position of the caption for mobile? It should look the same as on desktop.

    2nd question: how can I change the styling of headings for posts?

    Thank you!

    #1468143

    Hey aboutnina,

    Thank you for the inquiry.

    Please try to add this css code to adjust the font size of the caption title on mobile view:

    @media only screen and (max-width: 767px) {
      #top #wrap_all .avia-slideshow .av-slideshow-caption.av-m1g8o6g7-f7efce2774fcf0ca4bccdacd45c3be64__0 .avia-caption-title {
        font-size: 22px;
      }
    }
    

    Best regards,
    Ismael

    #1468158

    Thanks, Ismael, I added and saved the code to the Quick CSS under General Styling, but I don’t see any difference.

    #1468160

    Actually I do, the h2 in the text are no longer blue!

    #1468237

    Hi,

    Thank you for the update.

    We adjusted the css code a bit. Please try it again:

    @media only screen and (max-width: 767px) {
      #top #wrap_all .avia-slideshow .av-slideshow-caption.av-m1g8o6g7-f7efce2774fcf0ca4bccdacd45c3be64__0 .avia-caption-title {
        font-size: 22px !important;
      }
    }

    Regarding the text color, please edit the slide, then configure the settings in the Styling > Colors panel.

    Best regards,
    Ismael

    #1468420

    Thanks a lot, much better! The only problem that remains is the caption covers the person. How can I move it further to the right?

    #1468434

    Hi,

    Please try this CSS as well:

    @media only screen and (min-width: 480px) and (max-width: 767px) {
      .home #full_slider_1 .slideshow_caption {
        left: 20%;
        width: 80%;
        padding: 0;
      }
    }

    Best regards,
    Rikard

    #1468438

    Thank you, I pasted it, but unfortunately no change.

    #1468470

    Hi,

    I see the changes applying on my end, if you want them to apply to all mobile screen sizes then you can try this instead:

    @media only screen and (max-width: 767px) {
      .home #full_slider_1 .slideshow_caption {
        left: 20%;
        width: 80%;
        padding: 0;
      }
    }

    Best regards,
    Rikard

    #1468594

    Now I also see it on the small screen, much better thank you. However, when I turn the small screen into landscape mode the font of the top part of the caption (pink) becomes much smaller than the bottom part (white), which looks very strange. Can you see that? Thanks for your time

    #1468623

    Hi,

    Thank you for the update.

    Please include this css rule inside the css media query (max-width: 767px) to adjust the font size of the caption content:

    #top .avia-slideshow .av-slideshow-caption.av-m1g8o6g7-f7efce2774fcf0ca4bccdacd45c3be64__0 .avia-caption-content p {
        font-size: 18px;
    }

    Best regards,
    Ismael

    #1468728

    Thanks again, Ismael. However, on a small phone screen I don’t see the difference, the bottom font is still bigger than the top.

    #1468763

    Hi,

    Did you place the code inside this css media query?

    @media only screen and (max-width: 767px) {
     // place the code here
    }

    You can also adjust the font size by editing the slide. Go to Styling > Font Sizes, then adjust the Caption Content Font Size > Font Size for small screens (480px to 767px, e.g., Tablet Portrait) settings. Click the device icon to adjust the font size for different screen sizes.

    Best regards,
    Ismael

    #1468918

    This is what it looks like:

    @media only screen and (max-width: 767px) {
    #top #wrap_all .avia-slideshow .av-slideshow-caption.av-m1g8o6g7-f7efce2774fcf0ca4bccdacd45c3be64__0 .avia-caption-title {
    font-size: 22px !important;
    }
    }
    #top .avia-slideshow .av-slideshow-caption.av-m1g8o6g7-f7efce2774fcf0ca4bccdacd45c3be64__0 .avia-caption-content p {
    font-size: 18px;
    }
    @media only screen and (max-width: 767px) {
    .home #full_slider_1 .slideshow_caption {
    left: 20%;
    width: 80%;
    padding: 0;
    }
    }

    #1469002

    Hi,
    Thanks for the link to your page, when I check I see this:
    Screen Shot 2024 10 12 at 5.18.42 PM
    I recommend this css:

    @media only screen and (max-width: 479px) { 
    	#top.home #wrap_all #full_slider_1 .av-slideshow-caption .avia-caption-content p {
    		font-size: 12px;
    	}
    	#top.home #wrap_all #full_slider_1 .avia-caption-title {
    		font-size: 15px;
    	}
    }

    or this result for small screens (320px):
    Screen Shot 2024 10 12 at 5.36.33 PM
    and this for normal screens (425px)
    Screen Shot 2024 10 12 at 5.38.51 PM
    Please adjust to suit

    Best regards,
    Mike

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