Home › Forums › IT Consultant Support › Mobile Logo issue
- This topic has 7 replies, 2 voices, and was last updated 7 years, 2 months ago by Sonl Sinha.
-
AuthorPosts
-
October 5, 2017 at 1:04 pm #84833
On mobile my logo is cut off a little. Im using it consultant.
I added custom css and its not making any difference. franpower.com@media screen and (max-width:767px) {
.header .header-inner .logo{width:100%;}
}October 5, 2017 at 1:18 pm #84835Hi,
Kindly go to Appearance >> Theme Options >> Basic Settings >> Custom CSS Box:
Add this code there:
@media screen and (max-width:767px) { .header #logo img { max-width:100% !important; height:auto !important;} }
Regards,
ChrisOctober 5, 2017 at 1:20 pm #84838got it, It worked.
Id like to remove the ‘menu’ from the mobile version.October 5, 2017 at 1:24 pm #84840Hi,
Kindly go to Appearance >> Theme Options >> Basic Settings >> Custom CSS Box:
Add this code there:
@media screen and (max-width:767px) { .header_right nav, .mobile_nav a { display:none !important;} }
Regards,
ChrisOctober 5, 2017 at 1:32 pm #84844This removed the menu, however the logo is back to the original (too wide)
October 5, 2017 at 1:37 pm #84846Hi,
Kindly go to Appearance >> Theme Options >> Basic Settings >> Custom CSS Box:
Add this code there:
@media screen and (max-width:479px) {
.header #logo img { max-width:100% !important; height:auto !important;}
}Regards,
ChrisOctober 5, 2017 at 1:49 pm #84848Hi,
I paste this together and separate. Its either the logo works or the menu is removed, not both. Can you paste exactly what I should add to the CSS Box in its entirety to resize logo and remove menu from mobile.@media screen and (max-width:767px) {
.header_right nav, .mobile_nav a { display:none !important;}
}
@media screen and (max-width:479px) {
.header #logo img { max-width:100% !important; height:auto !important;}
}October 6, 2017 at 5:35 am #84885Hi,
Kindly paste both css in custom css box.
For hide menu
@media screen and (max-width:767px) { .header_right nav, .mobile_nav a { display:none !important;} }
For logo resizing
@media screen and (max-width:479px) { .header #logo img { max-width:100% !important; height:auto !important;} }
Regards,
Chris -
AuthorPosts
- You must be logged in to reply to this topic.