Okay
  Public Ticket #2747509
CSS
Closed

Comments

  • Sam Rutten started the conversation

    Hey I used this to add a background image, however, how Do I exlcude the hompeage from having the background? 


    .container-wrap {
      background-image: url('URL')!important;
    }

    This works like a charm but I want to exclude a page!


    Thx!

  •  8,394
    Tahir replied

    Hey Sam,

    Use the Below CSS selector.

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    body:not(.home) .container-wrap {
      background-image: url('URL')!important;
    }

    Thanks


    ThemeNectar Support Team