• Hallo to everyone.
    I would like to put a <div> over the slider that will be always over it. Like the picture in the link below: https://postimg.org/image/thrxwln45/
    In this div I want to put a search engine or some other content. Is it possible and what file should I edit to manage that.

    Thanks a lot in advance!!!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Can you provide a link to your site and I’ll try to implement such a thing for you, you should just be able to absolute position it on top of the slider.

    Thread Starter tkappas

    (@tkappas)

    First of all thanks a lot for the response.

    My site is in test version and its not finished yet. I have a preview here:

    https://tkapp.co.nf/

    and it is in greek language. I want to put the search engine over the slider maybe with some transparency, so the users will not use roll down to proceed it.

    Thanks a lot for help

    Hi @tkappas,

    I hope you are well today and thank you for your question.

    To achieve this you have to edit the slider function in the child theme of Sparkling theme as edited in the child theme shared in the following topic.

    https://colorlib.com/wp/forums/topic/scalingchange-size-of-the-slider-text-and-bars/#post-51432

    Best Regards,
    Vinod Dalvi

    Thread Starter tkappas

    (@tkappas)

    Hi again.

    @vinod-dalvi can I ask the code I should use to manage this? Absolute position, as @themesumo said above is a good solution?

    If you just want the test on it then you can try achieving this by adding the following CSS code in the Custom CSS option of the latest version of Sparkling theme on the below path.

    Admin Area -> Appearance -> Customize -> Sparkling Options -> Other -> Custom CSS

    .flexslider:before {
        content: "mine engine";
        position: absolute;
        display: block;
        z-index: 9999;
        color: #000;
        font-size: 50px;
        border: 5px solid #d10b0b;
        padding: 30px 40px;
        bottom: 20%;
        right: 37%;
        background: rgba(255,255,255,0.5);
    }
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Add content in slider’ is closed to new replies.