Integrity remove borders around posts/pages

I saw a screencast about this…didn’t understand it. I’m using the Integrity stack.

My goal is just to remove the border/shadow (everything border like) that encircles posts and pages. Thanks!

Also, I’m using Uber Menu as top drop-down…if there’s a way to remove those borders also… that would be great!!!

THANKS!

Hi @ShermanPotter,

Please add this code in X > Theme Options > CSS:

.x-boxed-layout-active .entry-wrap, .entry-wrap,
.x-navbar, .ubermenu-skin-vanilla-bar, .x-logobar {
    border: 0;
    box-shadow: none;
}

Hope this helps.

Hi, thank you for your response.

I added the css and it didn’t work.
I purged cache to verify that the cache wasn’t an issue.

thanks

Hello Sherman,

Thanks for updating the thread. :slight_smile:

I tested the code shared by Jade on your website and it’s is working fine on my end. Please try out following code and see how it goes. It will also remove some of the remaining border:

.x-boxed-layout-active .entry-wrap, .entry-wrap,
.x-navbar, .ubermenu-skin-vanilla-bar, .x-logobar, .x-colophon.top, .x-root .site, .x-root .x-site {
    border: 0 !important;
    box-shadow: none !important;
}

Thanks

Thanks!

I know very little about this stuff but it wasn’t working when I put it at the bottom of the CSS section.
On a whim, I added it to the top of the CSS, and it worked beautifully… strange? I don’t understand that.
It doesn’t matter I guess.

Since I have your attention here, could you tell me how to make the text above the comment field smaller… the text that says “Leave a Reply”… how could I make that a smaller size?

Thank you again

Hello Sherman,

Thanks for updating the thread. :slight_smile:

You can add following CSS under Pro > Theme Options > CSS:

#reply-title {
    font-size: 150%;
}

Thanks.

THANK YOU! that worked great…

Is there a way to reduce the amount of white space between “Leave Reply” text and the “last modified” line of text that’s directly beneath the post??

thanks again

Hi Sherman,

Could you please try adding the following CSS rule into your X -> Theme Options -> CSS area and see if that helps.

.single-post #comments {
    margin-top: 0;
}
.single-post #comments #reply-title {
    margin-top: 0;
}

Thanks!

Thank you!

Is there a way to decrease the white space at the top of the wordpress page/post before the content begins. It seems by default it adds over an inch of white space at the top.

Is there a way to reduce that?

THANK YOU!

Hello @ShermanPotter,

Are you referring to this area?

If that is the case, you can make use of this css code:

.entry-wrap {
    padding-top: 20px;
}

We would loved to know if this has work for you. Thank you.

1 Like

Yes, that worked beautifully!
THANK YOU!!!

Glad we were able to help :slight_smile:

If you have new questions, please open a new thread, since the thread is getting longer.

Thanks!

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.