Mobile Navigation Bar

Posted in: Newspaper
Post count: 15

In a mobile device and Tab, my site’s navigation bar/menu shows at the left corner. I want it to show on the right corner. How can I do that?

Post count: 35449

Hi,

If I understand correctly you want to achieve this https://www.screencast.com/t/dIpe5itHR
Please paste the css in Newspaper>Theme panel>Custom code>Custom css
@media (max-width: 767px){
#td-top-mobile-toggle {
position: absolute;
top: 0;
right: 0;
z-index: 999;
}
.header-search-wrap {
left: 0;
}
}

This will work only if you do not have mobile theme activate.
If you are using the mobile theme please add this custom code in Newspaper>theme panel>Mobile theme > Custom code
#td-top-mobile-toggle {
position: absolute;
top: 0;
right: 0;
}
.td-search-icon{
left: 0;
}

https://www.screencast.com/t/43KvG19wb

Thank you.

Post count: 15

Thank you very much…

Post count: 15

Ohh! there is a problem, after setting this feature, in a mobile device when I click on the logo it automatically shows search option. how can I solve this?

Post count: 15

Ohh! there is a problem, after setting this feature, in a mobile device when I click on the logo it automatically shows search option. how can I solve this?

Post count: 35449

Hi,

Please replease the aboce custom css with this one.
@media (max-width: 767px){
#td-top-mobile-toggle {
position: absolute;
top: 0;
right: 0;
z-index: 999;
}
.header-search-wrap {
display: inline-table;
left: 0;
}
}

Thanks.

Post count: 15

It worked. Thank you so much…..

Post count: 15

Hello Calin,
I am facing a problem with the permalink. I set my permalink to post name but slug does not appear fully, some part of it remains broken.
my site. https://nbobangla.com.

Post count: 35449

Hi,

This may be some WordPress limit in permalinks characters
Please read this arteriole -> https://wordpress.stackexchange.com/questions/89767/how-to-increase-the-character-limit-for-post-name-of-200

Also you can try this plugin to change the WordPress url limit
-> https://wordpress.org/plugins/longer-permalinks/

Thank you.

Post count: 15

yes, that plugin worked. Thank you, Thank you very much. You guys are awesome.Love you guys.

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