When I added the following code to my page, the logo in the header would go to RIGHT alignment in the web browser, overriding my setting of CENTER alignment. I have since removed the code so that the logo sits in the center.
Can you advise different code that will fix my mobile footer problem, without compromising my header settings?
How do I remove the menu on the mobile device? My website only has 1 page.
--
How do I tidy up the display of the footer on the mobile device? Happy for either of these 2 solutions:
1. Split the text over 2 lines: move the "All Rights Reserved" onto a second line by its self
2. Reduce the font size (footer only) so that all text appears on a single line.
Hello Hayley,
You can add this custom css ( thefox > styling options ) :
.menu_slide #nav_button_alt { display:none !important; }
@media only screen and (max-width: 767px){
#footer_coms .f_message_left { font-size:12px; }
}
This should do the trick!
Do not hesitate to contact us if you have more questions.
Regards.
---------------------
Hosting we recommend ( Free SSL and CDN included in all plan ).
Speed up your site with Autoptimize
Test your site with GTmetrix and fix the issue to make it faster
How to Update your Theme
When I added the following code to my page, the logo in the header would go to RIGHT alignment in the web browser, overriding my setting of CENTER alignment. I have since removed the code so that the logo sits in the center.
Can you advise different code that will fix my mobile footer problem, without compromising my header settings?
@media only screen and (max-width: 767px){
#footer_coms .f_message_left { font-size:12px; }
Hello Hayley,
I think the problem is that you forgot a }
This is the correct code :
@media only screen and (max-width: 767px){
#footer_coms .f_message_left { font-size:12px; }
}
Don't forget the last " } "
Do not hesitate to contact us if you have more questions.
Regards.
---------------------
Hosting we recommend ( Free SSL and CDN included in all plan ).
Speed up your site with Autoptimize
Test your site with GTmetrix and fix the issue to make it faster
How to Update your Theme