Customize mobile header and menu?

Posted in: Newspaper
Post count: 73

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.

Post count: 22421

Hi,
You can tweak it with custom CSS:
Place the code in the theme panel->custom CSS box.

@media (max-width: 767px){
.td-main-page-wrap {
padding-top: 30px!important;
}
.td-banner-wrap-full{
background-color: #222;}
}

Thanks.

Post count: 73

Hello, I used this code but only put the white bars in grey bars. I like to fit the header to the top and the bottom in the mobile bar. Using a big size image or fitting the header.

Thanks

Post count: 22421

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

Post count: 73

The problem is that code doesn’t is responsive the image. If I fit to portrait screen, when I put the phone in landscape, the image is multiplied.

Post count: 73

Can I display a different header style on mobile versus desktop version?

Thanks

Post count: 73

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 }

La Casa de EL

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

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?
La Casa de EL

Thanks

  • This reply was modified 10 years by Beldar.
Post count: 22421

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.

Post count: 73

Thank you very much Bogdan. And any chance to add more points to the mobile menu? Or to choose a different menu for mobile?

Thanks again.

Post count: 22421

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.

Post count: 73

Ok, thank you, I wait for the new update.

Viewing 11 posts - 1 through 11 (of 11 total)
The forum ‘Newspaper’ is closed to new topics and replies.