This thread is over two years old and may be outdated. Please create a new thread if you need help, or email us if you have an active Premium license.

Replies

6
  1. Alex S Staff 10 years, 10 hours ago

    Hi Mathciet,

    Thank you for those very kind words! :)

    Just to confirm, you’re asking about changing the sliders next / previous links? If you are, here’s how.

    Firstly, make sure your navigation style is set to thin for the slider. Then, Navigate to AppearanceCustom CSS, you’ll get our custom CSS editor. Just add the following code.

    .sow-slide-nav em {
        color: #fff;
        visibility: hidden;
    }
    .sow-sld-icon-thin-left:after {
        content: 'prev'; 
        visibility: visible;
    }
    .sow-sld-icon-thin-right:after {
        content: 'next';
        visibility: visible;
    }

    You might also need to install the SiteOrigin CSS Editor.

  2. mathciet 10 years, 9 hours ago

    Thank you very much for that!
    I was thinking in changing it in js…

    Can I also ask how to get the navigation out of the slider?

  3. Alex S Staff 10 years, 9 hours ago

    Hi Mathciet,

    Please replace the above CSS with the following CSS. If you navigate to AppearanceCustom CSS, you’ll get our custom CSS editor. Just add the following code.

    .sow-slide-nav em {
    	visibility: hidden;
    }
    .sow-sld-icon-thin-left:after {
    	content: 'prev'; 
    	visibility: visible;
    	position: relative;
    	right: 100px;
    	color: #000;
    }
    .sow-sld-icon-thin-right:after {
    	content: 'next';
    	visibility: visible;
    	position: relative;
    	left: 100px;
    	color: #000;
    }
    .sow-slider-base {
    	overflow: visible !important;
    }

    You might also need to install the SiteOrigin CSS Editor.

  4. mathciet 9 years, 11 months ago

    Thank you very much! Exactly what I needed!

  5. Alex S Staff 9 years, 11 months ago

    Hi Mathciet,

    It’s been an absolute pleasure. :) Is there anything else I can help you with today?

  6. mathciet 9 years, 11 months ago

    Not today, maybe later! :-)

Replies on this thread are closed.

Please create a new thread if you have a question, or purchase a SiteOrigin Premium license if you need one-on-one email support.

Have a different question or issue?

Start New Thread