Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #206243

    Missy S
    Participant

    Hello,

    I need to remove the navigation arrows from the big post slider/ I put various combinations in css and my site isnt responding to any of it.

    Also, how do I remove the dark hover from the blog post slider? I do not want a color change at all. Thanks.

    Missy

    #206244

    Missy S
    Participant
    This reply has been marked as private.
    #206828

    Christian
    Moderator

    Hey Missy,

    Please add the code below in your Appearance > Customize > Custom > CSS.

    .flex-direction-nav {
    display: none;
    }
    
    .x-post-slider-entry:hover>a {
    background-color: transparent;
    }

    Hope that helps. 🙂

    #820715

    Sam
    Participant

    Hi,

    Is it possible to change the background-color to some percentage transparency, for instance, 50%?

    Thanks!

    #821051

    John Ezra
    Member

    Hi there,

    Thanks for writing in! You can use rgba values.

    background-color: rgba(255, 255, 255, 0.5) This is 50% white.

    first 3 numbers control value red, green, and blue from values 0 – 255. the fourth number is the alpha channel, which controls transparency from 0 – 1.

    Hope this helps – thanks!