Site logo

Archived topic

show and hide right line

3 replies · Started by Gonzalo on January 18, 2019

Viewing posts 1–4 of 4

Hi!
I add this css, to separate right sidebar widgets from content area:
.content-area {
border-right-width: 1px;
border-style: solid;
border-color: #f1f1f1;
}
http://prntscr.com/m8zmk1

But, this line it's not hidden in Content (without sidebars).
http://prntscr.com/m8zm8i

Can you help me?

Regards

Hi there,

When a right sidebar layout is used, there would be a unique right-sidebar class in the <body> tag.

That means you can do this:

body.right-sidebar .content-area {
    border-right-width: 1px;
    border-style: solid;
    border-color: #f1f1f1;
}

perfect, thank you Leo!

No problem :)

This archived topic is closed to new replies.