Sela Theme – black logo in mobile version
-
Hi, i have enable the mobile version for this theme, but on mobile don’t see the logo but only a black color.
My logo in mobile version it replace in black rectangle.How can i do to fix it?
My website: gerardopandolfi.com
Host: wordpress.comthanks
The blog I need help with is: (visible only to logged in users)
-
i have modify my theme, and in the mobile version it possible watch only the header and not the logo.
-
The mobile theme is intended only for themes that are older and are not responsive.
Since Sela is already responsive, it automatically adapts to smaller screen sizes. This means that you don’t need the mobile theme enabled for your site to look good on mobiles devices. I’d suggest you disable the mobile theme to view your site as intended on small devices.
Let me know if that helps.
-
-
Hi, i have apply the change and disable the mobile mode.
But i try and i think something not work on my css setting, because all text in the menu it white and not possible read it.Do u know how can i do to change the menu text color in the mobile version?
Thanks
-
In your custom CSS, you’ve assigned a background colour of white to your navigation, without putting it in a media query, so it applies to all screen sizes:
.main-navigation { background-color: #ffffff; border-bottom: 1px solid #000000; border-top: 1px solid #000000; }You can try restricting that white background to larger screens by putting it in a media query, so it leaves the mobile menu background untouched:
@media screen and (min-width: 768px) { .main-navigation { background-color: #ffffff; border-bottom: 1px solid #000000; border-top: 1px solid #000000; } }You can learn more about using media queries that target certain screen sizes here:
http://en.support.wordpress.com/custom-design/custom-css-media-queries/
- The topic ‘Sela Theme – black logo in mobile version’ is closed to new replies.