Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1485576

    Hi there,

    I’m using several slideshows in this project.
    I would like the navigation arrows to be more visible than they are now, a bit thicker for example. Can you tell me where I can adjust this because I can’t figure it out myself :)

    Cheers in advance!

    Steven

    #1485577

    try this:

    #top .avia-slideshow .avia-slideshow-arrows a::before {
      background: rgba(0,0,0,0.7) !important;
    }
    
    #top .avia-slideshow .avia-slideshow-arrows svg {
      height: 2em;
      margin-top: 0 !important;
      line-height: 0 !important;
      position: absolute;
      top: 50%;
      transform: translate(-50%, -50%);
      left: 50%;
    }
    
    #top .avia-slideshow .avia-slideshow-arrows a:hover svg {
      fill: yellow;
      transition: all 0.7s ease;
    }
    
    #top .avia-slideshow .avia-slideshow-arrows a:hover svg path {
      stroke-width: 1;
      stroke: yellow;
      stroke-linecap: round;
    }

    because now i guess these icons are svg files allready. so to make them thicker use stroke-width on the path.

    #1485579

    Thanks! It works like a charm.

    #1485593

    Hi,

    Great, I’m glad that @guenni007 could help you out :-)

    Best regards,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.