-
ldaniele-hg2
Hi,
I’ve gotten the site to look very close to how I want it to on mobile, but am running into a couple last issues.
The tagline doesn’t seem to be showing and I’m not sure where to set this for mobile.
The logo is also not showing a logo, I tried some custom code, but am unsure if it’s correct.
Right now the “logo” on mobile is just text, but I’d like to have a small version of our logo that fits on mobile view (the one for desktop is far too large of course)The menu, I’d ideally like to see the option for NOT the hamburger menu so I can decide between the two, but I can’t seem to get it to go from the hamburger menu option to the buttons on mobile to see what it looks like.
On the About page under “members” I’m trying to center my photo on mobile only.
Last small thing is in the Instagram app at the bottom of most page there’s a follow button and for mobile, it would be better to have it under our profile and link, but am having issues targeting that or using the correct css.
Thanks for any help with this 🙂
Site: http://indigoxdo.com
-
Alvind
Hi there,
Let’s tackle one issue at a time.
To display the tagline, you will need to disable the Mobile Header option. For resizing the logo on mobile, custom CSS will be required.
The menu, I’d ideally like to see the option for NOT the hamburger menu so I can decide between the two, but I can’t seem to get it to go from the hamburger menu option to the buttons on mobile to see what it looks like.
I’m not quite sure I understand this. Could you please provide more details?
-
ldaniele-hg2
Thanks!
Ok, so I’ve got the tagline showing, it’s a better size on mobile now – but I need it to center 🙂
The logo on mobile is showing a broken image, and I’m not sure where I need to go to fix that…
For the menu, it’s a hamburger menu on mobile.
I want to see what it looks like with the menu buttons on mobile (basically as is on desktop) hope that makes sense! -
I want to see what it looks like with the menu buttons on mobile (basically as is on desktop) hope that makes sense!
Go to customize > layout > primary navigation, switch to mobile view, and adjust the mobile break point.
For the logo issue, remove the retina logo at customizer > site identity.
To center the tagline, try adding this css:
p.site-description { text-align: center; }
Adding CSS: https://docs.generatepress.com/article/adding-css/
-
ldaniele-hg2
Thank you!
Got all those working 🙂 still just playing around with sizing/look on menu, but otherwise it is working 🙂
These are the last outstanding from this thread:
On the About page under “members” I’m trying to center my photo on mobile only.
Last small thing is in the Instagram app at the bottom of most page there’s a follow button and for mobile, it would be better to have it under our profile and link, but am having issues targeting that or using the correct css.
-
For the image, you are using a GB image block, switch to mobile view, and set the image to align center.
https://app.screencast.com/EON0RVLWo5yAgTry this CSS:
@media(max-width: 768px) { .galleryHeader { flex-direction: column; align-items: center; } .wp-block-ifb-instagram .ifbInstagramFeed .galleryHeader .headerRight { margin-right: auto; } }
-
ldaniele-hg2
Thank you! That sorted it 🙂 I only had to add a little margin as they overlapped on the Instagram feed, but got that working!
-
Glad to hear that 🙂
- You must be logged in to reply to this topic.