Can't Vertical Align Menu on Homepage
EverythingWx
Registered Users Posts: 6 Big grins
I have a navigation menu on my homepage that I would like to be vertically centered on the page. I have used this code:
.sm-page-widget-nav a {
color: #fff !important;
vertical-align: middle;
}
and while it correctly changes the color to white, it does not vertically align the menu on the page. Any ideas? Thanks!
.sm-page-widget-nav a {
color: #fff !important;
vertical-align: middle;
}
and while it correctly changes the color to white, it does not vertically align the menu on the page. Any ideas? Thanks!
Tagged:
0
Comments
margin: 0 auto:
will center elements in the width of its parent div.
My Website index | My Blog
> margin: 0 auto:
> will center elements in the width of its parent div.
No luck. I am not having trouble centering it horizontally, only vertically within the page.
Please post your site.
Images in the Backcountry
My SmugMug Customizations | Adding CSS to Your Site | SEO for the Photographer | Locate Your Page/Widget Number | SmugMug Help Desk
Looks like they are, unless I'm missing something.
Images in the Backcountry
My SmugMug Customizations | Adding CSS to Your Site | SEO for the Photographer | Locate Your Page/Widget Number | SmugMug Help Desk
I want the menu (portfolio prints contact) on the home page to be vertically centered on the screen (no matter the size of the monitor). You can see my currently live website (https://corymottice.com/) as an example.
Thanks for looking into it!
Got it. Add this to your Theme's Custom CSS Section:
The
margin: 24px auto;
is top/bottom24px
and left-right toauto
(centers left/right).Images in the Backcountry
My SmugMug Customizations | Adding CSS to Your Site | SEO for the Photographer | Locate Your Page/Widget Number | SmugMug Help Desk
Sorry. I am not being clear. I have attached an image that should help. I want to keep the menu horizontal as it is. I just want it to be aligned in the middle of the page. Thought maybe there is a way I could apply "vertical-align: middle;" or something. Hope this makes more sense. Thanks!
Third time is a charm.
Images in the Backcountry
My SmugMug Customizations | Adding CSS to Your Site | SEO for the Photographer | Locate Your Page/Widget Number | SmugMug Help Desk
Awesome. Thank you so much!