isissa Posted December 30, 2019 Share Posted December 30, 2019 I am using the Flatiron template, and this is my site: www.isissakomadajohn.com I have a few issues with my header in mobile: I would like the navigation (currently denoted by "menu") to appear below the logo instead of on top I would like the navigation to say "+" instead of "menu" Once the navigation is clicked to open, I would like the navigation items to be less spaced out in terms of line height. they currently take up the entire screen on my iPhone 7 plus Once the logo and navigation are reversed, I would like less space between the logo and the top of the page, and between the navigation and the first item in my scrolling index I am having two issues with my footer too: On mobile, when you scroll all the way to the bottom of the index and reach the footer, the social icons are slightly off center On mobile, when you scroll all the way to the bottom of the index and reach the footer, there is a ton of space between the last image in the index and the social icons. I'd like to decrease this amount of space Many thanks in advance! Isissa Link to comment
tuanphan Posted December 31, 2019 Share Posted December 31, 2019 Too many problems on 1 post.. 1. Logo (top) - Menu (bottom) Add to Home > Design > Custom CSS header#topBar { display: flex; flex-direction: column-reverse; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
isissa Posted December 31, 2019 Author Share Posted December 31, 2019 Ok, thank you I will repost other questions separately. For logo on top and menu on bottom, I only want this for mobile. I am happy with it how it was on desktop. Thanks! Link to comment
tuanphan Posted January 1, 2020 Share Posted January 1, 2020 34 minutes ago, isissa said: Ok, thank you I will repost other questions separately. For logo on top and menu on bottom, I only want this for mobile. I am happy with it how it was on desktop. Thanks! okay, remove the above code and use this @media screen and (max-width:640px) { header#topBar { display: flex; flex-direction: column-reverse; } } If you post too many problems in one post, it will be difficult for you to get an answer. Almost like these questions I see on the forum, no one answered. In case you don't want to spend a lot of time posting, you can hire someone here, for example Paul2009, christyprice colin.irwin, ... or see my service. 😷 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
isissa Posted January 1, 2020 Author Share Posted January 1, 2020 Awesome that worked @tuanphan - thank you! And I appreciate the advice! Link to comment
isissa Posted January 1, 2020 Author Share Posted January 1, 2020 @tuanphan -- Actually, now the menu doesn't open on mobile. It is in the correct place but is no longer a link -- its just text there. Link to comment
tuanphan Posted January 1, 2020 Share Posted January 1, 2020 6 minutes ago, isissa said: @tuanphan -- Actually, now the menu doesn't open on mobile. It is in the correct place but is no longer a link -- its just text there. Seems fine here.. 2. I would like the navigation to say "+" instead of "menu" #mobile-navigation #mobile-navigation-label:after { content: "+"; font-size: 50px; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
isissa Posted January 1, 2020 Author Share Posted January 1, 2020 thank you @tuanphan! is there a way to have the word menu not appear once you click the "+" ? Link to comment
tuanphan Posted January 1, 2020 Share Posted January 1, 2020 8 minutes ago, isissa said: thank you @tuanphan! is there a way to have the word menu not appear once you click the "+" ? Remove above code, and use this #mobile-navigation #mobile-navigation-label:after, #mobile-navigation.sqs-mobile-nav-open #mobile-navigation-label:after { content: "+"; font-size: 50px; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
isissa Posted January 1, 2020 Author Share Posted January 1, 2020 I'm still having trouble with the menu not opening. it works fine when it is positioned above my logo, but with the code to have it below by logo it doesn't click. it doesn't work on my actual iPhone. Link to comment
tuanphan Posted February 1, 2020 Share Posted February 1, 2020 On 1/1/2020 at 8:44 AM, isissa said: I'm still having trouble with the menu not opening. it works fine when it is positioned above my logo, but with the code to have it below by logo it doesn't click. it doesn't work on my actual iPhone. Try adding this code to Home > Design > Custom CSS @media screen and (max-width:640px) { header#topBar { display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; flex-direction: column-reverse; } } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.