Home Forums WordPress Themes – Premium Circumference edge to edge default slideshow problem

Viewing 6 posts - 16 through 21 (of 21 total)
  • Author
    Posts
  • #41322
    rlrpt
    Participant

    to be clear, this code didn’t produce any change in the location of the caption for me. I can see how the bottom command puts the slidernav 3% from the bottom of the slider, so I don’t know why it didn’t work for the caption, but it didn’t.

    .wk-slideshow-circumference .caption {
        bottom: 0;
    }
    #41331
    Sushil Adhikari
    Moderator

    Hi there,

    Might be css we had provided is overwrite by other script. So try by giving on hierarchical way for an example:
    body .wk-slideshow-circumference .caption {
    bottom: 0;
    }

    or give !important at the end of value:
    body .wk-slideshow-circumference .caption {
    bottom: 0 !important;
    }

    Note: This is the custom changes on your website so without looking on to your website we couldn’t provide you appropriate solution. So It will be better if you take help of nearby developer.

    Thanks

    #41362
    rlrpt
    Participant

    This did work! Awesome, thanks!

    body .wk-slideshow-circumference .caption {
    bottom: 0;
    }
    #41394
    Sushil Adhikari
    Moderator

    Dear Rlpt,

    It’s really hard to provide your exact solution without looking on to your site, so please provide us your site URL. So we can provide you appropriate solution.
    You can try by placing !important on css given on previous reply. for an example:
    .wk-slideshow-circumference .caption {
    bottom: 0 !important;
    }

    Thanks

    #41415
    rlrpt
    Participant

    I used the “body” solution you provided and it worked great. Thanks!

    #41425
    Sushil Adhikari
    Moderator

    Sounds Great.

    Thanks a lot for your cooperation.

    Best regards

Viewing 6 posts - 16 through 21 (of 21 total)
  • You must be logged in to reply to this topic.