Remove Space around Classic Slider?

How can I get rid of the spacing around my classic slider element along with the top of the first section that follows it. Marked areas on my attached screenshot.

http://www.studenteq.com?bypass=testing

Hi There,

Thanks for writing in!

Please add this css to your theme Option -> Global CSS and let us know how this works.

.with-container {
  padding: 0px !important;
  margin-bottom: 0px !important;
}

Hope this helps!

Thanks

Yes that definitely helped! But there is still a very slight line - almost like it is a white border around the sections (circled in red on attached screenshot)? Would love to get it perfectly flushed - any ideas? So picky I know!

Hi There,

Please update the provided code from :

.with-container {
  padding: 0px !important;
  margin-bottom: 0px !important;
}

to :

.with-container {
  padding: 0px !important;
  margin-bottom: 0px !important;
  border: 0px;
}

Hope it helps!

Thank you for the reply but adding the border 0px did not seem to do anything?

Hi There,

Please try:

.with-container {
  padding: 0px !important;
  margin-bottom: 0px !important;
  border-bottom: 0px !important;
}

Hope it helps

Nope :frowning:

About a 1px white line still there. You can see it between header and main content area and then at bottom between main content and footer. Screenshots attached

Ok think I just fix the bottom line - I added

border-top: 0px !important;

to
footer.x-colophon.top {

now I just have to figure out the header one!!!

Hi,

To remove header border, you can add this in Theme Options > CSS

.x-navbar {
    border-bottom: 0 !important;
}

Hope that helps.

That doesn’t seem to do it? Still a very thin white line above the slider. Could if be a border around the slider somehow?

Hi There,

Please keep the code provided by Paul + update the code I provided previously to :

.with-container {
  padding: 0px !important;
  margin-bottom: 0px !important;
  border-bottom: 0px !important;
  border-top: 0px !important;

}

Hope it helps!

YES!! Those two combined worked! Thank you!!!

You’re welcome!
We’re glad we were able to help you out.

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