Remove space between menu and slideshow
-
Hi There! I’d like to remove the extra space between the menu and slideshow on my front page:
https://internationaltraumacenter.wordpress.com
I also want to remove the ‘home’ option from my menu and not have the ‘home’ title on the front page.
Thanks so much!
The blog I need help with is: (visible only to logged in users)
-
Hi internationaltraumacenter
To edit what shows on your menu. Click Appearance > Menus from your Admin Dashboard.
-
Thanks, I was able to create a custom menu, but I still have a bunch of extra space between the menu and the slideshow on my homepage. I already used a CSS code to remove the dark box around the slideshow, but can I remove the extra space as well? Thanks for your help!
-
-
Try adding this custom CSS.
.singular.themes-sidebar1-inactive .main-content { margin: 0px auto; } .main .main-content article.post-singular .entry { padding: 0px; }Select Appearance > Customize > CSS from your Admin Dashboard and enter the custom CSS there.
You need to be on the WordPress.com Premium Plan for custom CSS to save. You can only preview custom CSS on the free plan.
-
It unfortunately did not work, but thank you so much!! I think the problem is that the box around the slideshow is causing the spacing issue…even though it is now blended into the background, it’s still there, despite using this:
div.slideshow-window {
background-color: inherit;
border: none;
}
Can I not remove the border completely? Thanks! -
-
-
Oh wait, there is now a bunch of extra space underneath the slideshow now, between it and the text content on the main page. Is there a CSS code to remove that as well? Sorry for the trouble!
-
-
Oh wait, there is now a bunch of extra space underneath the slideshow now, between it and the text content on the main page. Is there a CSS code to remove that as well? Sorry for the trouble!
-
-
-
-
Hi Again! I just noticed that my mobile/phone view of the homepage now gets messed up with these CSS codes (the menu lies on top of the slideshow). Is there a way to fix just the mobile view? The computer and iPad views seem to work fine. Thanks!
-
Yes I see. If we move the slide show back down a bit it should fix the problem.
.slideshow-window { top: -60px; margin-bottom: -45px; } -
Thanks so much, but is there a way to only do that for the mobile view? I don’t want to move the slideshow down for the computer view, sorry.
-
-
I appreciate it. Additionally, is there a way to have my logo be left-aligned next to my header title instead of centered above it? Thanks!!
-
This should only target screens narrower than 600px
@media screen and (max-width: 600px) { .slideshow-window { top: -60px; margin-bottom: -45px; } }
- The topic ‘Remove space between menu and slideshow’ is closed to new replies.