Hello I want to change the size and the color of the font on my footer menu. I want a black color and I want to be able to choose the font size myself.
I also want to center the footer menu on mobile
here is my website : https://embrace-the-grind.com/
Thanks
Hi there,
You can adjust the footer menu styling through your theme’s code editor. What you’ll need to do is:
- Go into your theme files and locate the stylesheet (usually named base.css or theme.css)
- Add in a rule that changes the text color of your footer menu links to black.
- Add another rule that lets you set the font size to whatever you like.
- Lastly, you can apply a simple rule that tells the menu to align in the center when someone views it on a mobile screen.
The exact instructions depend on how your theme is built, since some themes use different class names for the footer menu.
You can handle that in your theme editor with a bit of custom CSS. For example:
.footer-menu a {
color: #000 !important;
font-size: 16px; /* adjust as needed */
}
@media (max-width: 768px) {
.footer-menu {
text-align: center;
}
}
That’ll give you black text, control over font size, and a centered footer menu on mobile. If your theme has a lot of custom styling, you might need to fine-tune the selectors, but this is the base fix. Let me know if it works.