Adjust transparency on slider

Discussion in 'StartPoint Business One Page WordPress Theme' started by alysanger, Apr 2, 2014.

Thread Status:
Not open for further replies.
  1. alysanger

    alysanger Guest

    Joined:
    Mar 28, 2014
    Messages:
    3
    Likes Received:
    1
    Hello -

    (StartPoint Theme) How do I adjust the transparency of the slider boxes? I want them to have very little transparency or be solid.

    Thanks!
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .text-container h3 {
    background: white;
    opacity: .9;
    z-index: 9;
    }
    .text-container h1 {
    background: red;
    opacity: .5;
    }
    
    In place of "white" and "red" you can put your color or color code.
    This will solve your issue.
     
    alysanger likes this.
  3. alysanger

    alysanger Guest

    Joined:
    Mar 28, 2014
    Messages:
    3
    Likes Received:
    1
    Thank you!

    I had just one other question. :) I've adjusted the font style, family, and color for the header menu but the drop down arrow that indicates there are child pages under a main page does not take on the new changes. Is there a code I can use to change the color of the drop down arrow to black?
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .sf-arrows .sf-with-ul:after {
    border-top-color: black;
    } 
    In place of "black" you can put your color or color code.
    This will solve your issue.
     
    alysanger likes this.
  5. alysanger

    alysanger Guest

    Joined:
    Mar 28, 2014
    Messages:
    3
    Likes Received:
    1
    Perfect - thank you very much for your help! :)
     
    Piyush likes this.
Thread Status:
Not open for further replies.

Share This Page