Okay
  Public Ticket #1319047
Custom CSS
Closed

Comments

  •  2
    Steve started the conversation

    3 questions:

    1. How can I add a red border around all embeded Youtube videos?
    2. How do I add a red border line immediately above the first row on all pages? I tried various custom CSS with no luck.
    3. How can I change the color of a single menu item? In the footer menu, notice that my custom CSS class works for the size, font type and italics, but the color doesn't work.

    Thanks

    Steve

  •  8,470
    Tahir replied

    Hey Again, 

    Hope you had a Great Weekend, 

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    .iframe-embed {
        border: 10px solid #f00;
    }
    .first-section {
        border-bottom: 10px solid #f00;
    }
    #footer-outer li#menu-item-4871 a:not(.nectar-button) {
        color: #f00 !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  2
    Steve replied

    Thank you. The code provided did exactly what I needed. You can close this ticket.