Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • Saguaros Moderator
    #1006722

    Hi dr_tatian,

    Please help us to separate your questions so that each question should be in 1 topic so that if other people have the same concern, it would be very helpful.

    For the slideshow description text in mobile view, you can use this css rule:

    @media (max-width: 480px) {
      .ja-ss-desc {
        display: block !important;
      }
    }

    Regards

    dr_tatian Friend
    #1006829

    Thank you, just to confirm this should be placed in the custom.css file?

    Saguaros Moderator
    #1006876

    You’re right. It’s better to put custom css code into the file: ROOT/templates/ja_medicare (your default template)/css/custom.css

    dr_tatian Friend
    #1007431

    thanks i will put this in the custom.css file – what do i need to do to call it for this piece of code? assuming it just goes in the code editor section of the element

    Saguaros Moderator
    #1007492

    Hi,

    You just add above css code into ‘custom.css’ file, all custom code inside this file will be loaded in priority on your site.

    Regards

    dr_tatian Friend
    #1008049

    I have made the described change and now it will appear in mobile views. However it takes up the entire screen and does not reatain its size similar to that which is on desktop screen. Refer to attached for example


    1. banner-issue.pdf
    Saguaros Moderator
    #1008392

    Yes, this slideshow is hidden in mobile view by default so it’s not styled in small view port. You can use Media Queries as above and add style for it.

    For example, if you want to change font size for the description, you use this declaration:

    @media (max-width: 480px) {
      .ja-ss-desc h3 {
        font-size: 20px;
      }
    
      .ja-ss-desc p {
        font-size: 10px;
      }
    }
    dr_tatian Friend
    #1008627

    thank you for resolving this issue for me

Viewing 8 posts - 1 through 8 (of 8 total)

This topic contains 8 replies, has 2 voices, and was last updated by  dr_tatian 7 years, 9 months ago.

The topic ‘Formatting issues with positions, text and appointment button’ is closed to new replies.