Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #14069
    simon olley
    Participant

    The paled-out box that holds the slider title, I need to make it more like 60% or 70% of the width of the slider image – is that possible?

    #14080
    Sakin
    Keymaster

    @oly: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box. This will make the container max with 60% and it depends on the need of the tile.
    #main-slider .entry-container { max-width: 60%; }

    #14082
    simon olley
    Participant

    perfecto!

    #14101
    simon olley
    Participant

    I now need the paled-out box that holds the slider title to run to width 100% BUT only on the two smart phone sizes – is that possible?

    #14110
    Sakin
    Keymaster

    @oly: Yes you can do that with media screen.

    /* For screen less then 960px */
    @media screen and (max-width: 960px) {	
    #main-slider .entry-container { max-width: 100%; }
    }
Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Increase width of main slider title box’ is closed to new replies.