Okay
  Public Ticket #142006
font transparent background
Closed

Comments

  • saurabh started the conversation
    Folks i am trying to add a background to my text in the contact parallax section as the content is not very legible and getting mixed up with the map background. Is there a way i can do something like an option you offer in the slider pages as "If you would like to add a semi transparent background to your caption, activate this option."
  •  982
    ThemeNectar replied

    Hey Saurabh,

    the easiest thing to do would be to switch to the text tab on your editor and add a div with a class around your text with you could use css to style it.

    Here's an example for the text tab: 

    <div class="transparent_box">
    
    TEXT HERE
    
    </div>

    and then in your custom css box in the salient options panel add this in:

    .transparent_box {
       background-color: rgba(0,0,0,0.6);
       padding: 10px;
    }

    Cheers