Hello,
I would like the header did not have white space above and below in the mobile version. My website to look this is: http://www.lacasadeel.net
Also, I would modify the menu of the mobile version, both color and options that appear in it, to show one more than the desktop version.
Thanks you very much.
Hi,
The code i provided removes the bottom border and changes the background color for the ad container.
The theme was not built to support big logos to cover the containers like that. The recommended logo dimensions are these: http://screencast.com/t/wRIpx7CxBGJV. In order to make the logo fit on mobile phone you can make a smaller logo and add it as a background image to the container in the mobile version.
You will need a bit of css knowledge to get it done.
As an example:
@media (max-width: 767px){
.td-header-style-10 .td-header-sp-logo {
background-image: url("your image url");
}
.td-header-style-10 .td-header-sp-logo img{
display:none
}}
It will need further customization to fit properly though
Thanks
I put this code to hide header in mobile version and display the menu bar first:
.td-header-sp-logo { display:none }
.td-banner-wrap-full { display:none }

The problem I have now is showing no logo on the menu until I’ve done scroll:

Any solution? Perhaps another option would be to show the Heading Style 5 in phones.
Can I add any new option only to the mobile menu?

Thanks
-
This reply was modified 10 years by
Beldar.
Hello,
Unfortunately there is no option to change the header style on a different viewport.
You can use this custom CSS to display the small logo on the mobile version of your site:
@media (max-width: 767px){
.td-header-style-10 .td-main-menu-logo {
display: block!important;}}
Now your logo should show up as expected.
Thank you.
Hi,
At the moment these are the only options for the mobile menu. In a future update we hope to implement a number of options for the mobile version. What you can do is make the top-menu appear above the main menu, but again it will need custom work to display properly. Not all options from the top menu will fit.
As an example:
http://screencast.com/t/PL9o8rRCN6N6
code:
@media (max-width: 767px){
.td-header-top-menu-full {
display: block;}
.td-header-sp-top-menu{
display:block!important;
}
You can then hide elements you do not want with the ‘display:none’ property.
Thanks.