• Resolved kisiello

    (@kisiello)


    Hello,
    I have a problem with sliders, they don’t work as they should on mobile phones. Fonts are bigger, so i can’t write lots of information on sliders, because when i do it, most of written text isn’t correctly showed. Additionaly, on mobile phones there isn’t any slider button. How can i repair it?

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi,

    Please apply the below CSS code in custom CSS box and save the changes.

    For show button on mobile –

    @media only screen and (max-width: 480px) and (min-width: 200px){
    .carousel-text .enigma_blog_read_btn {
        display: block !important;
    font-size: 11px;
    }
    }

    For reducing the font size –

    @media(max-width:480px){
    li.animated.fadeIn.desc_2 p{
    font-size: 10px;
        line-height: 18px;
    }
    }

    You can adjust the size as per requirement.

    Thanks.

    Thread Starter kisiello

    (@kisiello)

    It works! Thank you very much!

    Thread Starter kisiello

    (@kisiello)

    I have another question and i don’t want to make a mess and create new post..

    Can i somehow change the footer widget area background? I want it to look like head section above the menu.

    Thread Starter kisiello

    (@kisiello)

    I also want to change slider size, it’s too long, can I do it somehow?

    Hi,

    Please use the below CSS code in custom CSS box and save the changes.

    For changing the slider height –

    @media(min-width:1200px){
    div#myCarousel img {
        height: 550px;
    }
    }
    @media(max-width:768px){
    div#myCarousel img {
        height: 400px;
    }
    }
    @media(max-width:480px){
    div#myCarousel img {
        height: 400px;
    }
    }

    3) For footer widget area background color –

    .enigma_footer_widget_area {
       background: #34495e !important;
    }

    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Problem with slider on mobile.’ is closed to new replies.