• Resolved ktrides2

    (@ktrides2)


    Hi Ben,
    I want to hide the “Before Main Content” Widget on only one page. I thought this would work, but it is hiding on every page, could you please advise?

    .page-id-1394 .sidebar-after-main-content, .sidebar-before-main-content {
      display: none !important;
    }
    

    Thank you!
    Katie

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Ben Sibley

    (@bensibley)

    Hey Katie,

    The comma starts a new selector, so “.page-id-1394” needs to be used again to target the single page. This updated code will work:

    .page-id-1394 .sidebar-after-main-content, 
    .page-id-1394 .sidebar-before-main-content {
      display: none !important;
    }
    Thread Starter ktrides2

    (@ktrides2)

    Ah ok, I was close. Thanks Ben, you rock as always!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Hide widget one page’ is closed to new replies.