How to make this border continue to the navigation?

Laurentius

Active member
Hello, I would like this border to continue to the navigation, I don't want it to interupt as it currently does.

These pictures show what I mean. :)
screenshot1.webp screenshot2.webp

Thanks
 
I added the following in the extra.css template and it worked.

Code:
#content .pageContent {
border-right: 1px solid red;
border-left: 1px solid red;
}

border.webp
 
Perhaps a conflict. Have you tried adding the !important in case you made alterations already and it's not overriding?

Code:
#content .pageContent {
border-right: 1px solid red !important;
border-left: 1px solid red !important;
}
 
It works now, but it doesn't cover the smal interruption and I know why.. Somehow when modifying the navigation I have moved it up a bit. Because if I temporarily disable the picture I use as a header that small area where the border interrupts turns to the same color as the background. Do you know how I could fix that?
 
Top Bottom