EricaChoi Posted April 5, 2021 Posted April 5, 2021 Site URL: https://www.a-b-c.org Hello! Our website (www.a-b-c.org) is on the Bedford template, which, as I understand it, does not allow the navigation bar (which I circled in yellow) to appear horizontally on the top of the page without a custom code. I was hoping someone could share a code that makes this navigation bar appear horizontally. Thanks so much!
tuanphan Posted April 10, 2021 Posted April 10, 2021 On 4/6/2021 at 2:49 AM, EricaChoi said: Site URL: https://www.a-b-c.org Hello! Our website (www.a-b-c.org) is on the Bedford template, which, as I understand it, does not allow the navigation bar (which I circled in yellow) to appear horizontally on the top of the page without a custom code. I was hoping someone could share a code that makes this navigation bar appear horizontally. Thanks so much! Hi. Add to Page Header (Page where you have problem. Hover on Page on Navigation or Not Linked > Click Gear icon to Open Page Header) <style> /* Nav horizontal */ @media screen and (min-width:641px) { div#folderNav { width: 100%; } div#folderNav ul { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } div#folderNav ul li { margin-left: 15px; } div#content { width: 100% !important; } } </style> Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
EricaChoi Posted April 12, 2021 Author Posted April 12, 2021 @tuanphan, you are so amazing. Thank you so much. Worked like a charm!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.