nobody knows how to fix this?
Hey @centecente,
I have the 2024 them on my website and I would like to change the logo on mobile version.
How can I reach this ?
Currently there is not a way natively in WordPress (and the TT4 theme) to have a different logo on mobile.
For that you could try a plugin like this one. You could have 2 separate image blocks – one for mobile, one for others – and use the plugin to toggle which is shown.
is there a way also to increase the size of the Mobile Menu Hamburger?
This is likely something that would need some CSS code to achieve. Are you able to share a link to the site and I can take a look?
nobody knows how to fix this?
It is worth noting that these forums are handled entirely by volunteers – so sometimes there can be some variability in how long replies take – especially over weekend periods. But folks will get to them when they are able 🙂
Thanks @jordesign
the plugin did the job for the logo, really a nice plugin with many features on visibility or scheduled blocks
about the css for the size
the website is still on local so I cannot share you a link
if somebody can load the theme and check mobile this will be the same I hae because I didn’t changed any part of code
Update.
I found the part of code for the menu and fixed the size to my desires
now I need to increase tthe text of the menu once menu is open and i’ll be ok
Hi there,
I found the part of code for the menu and fixed the size to my desires
If you edited it directly in the code (not using WP hooks, CSS, child theme, etc), keep in mind that you would technically lose it on theme updates.
now I need to increase tthe text of the menu once menu is open and i’ll be ok
Is that on the expanded menu for the hamburger menu?
If so, maybe you could add some CSS for that:
/* Increase font size for expanded menu items on hamburger menu */
.has-modal-open .wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content {
font-size: 35px;
}
You can add this CSS by going to the Site Editor, then Styles. There you can click on the three-dot icon (kebab menu), and go to Additional CSS:
Full Size: https://d.pr/i/Yox1tm
thanks ! it works perfectly