Hi,
I have several questions but very fast ones:
· About the mobile version I would like to ask you two questions. I want to change the background pic of the mobile menu but I dont know how to do it. Also I would like to add a button in the mobile version to do scroll to the top, but I dont know how to put it.
· About the item news ticker, I would like to change the text but the item doesn´t have this option, how can I do that?
· And also in the spanish translation for related articles, it is writen “artículos relacionado” so one s at the end in missing, I also would like to change that.
Thank you so much for your time 😉
Hi,
Regarding the mobile menu background, if the mobile theme plugin is not active it can be changed here
– https://www.screencast.com/t/7fAAHdYQ
If the mobile plugin is active the settings are here
– https://www.screencast.com/t/XPrfrNbV
Also the scroll would be present when the mobile theme is active
– https://www.screencast.com/t/sGXK6QYLR2
When inactive it will not appear, it could be made visible by entering this code in Theme panel->Custom CSS
– https://www.screencast.com/t/OctmuN7BL7
@media (max-width: 767px) {
.td-scroll-up {
display: block;
}
The news ticker text can be changed in the theme translation settings
– https://www.screencast.com/t/5YY0QzJy6e
Same for the related articles – https://www.screencast.com/t/hZzfVfoRPeG
Thanks
Thank you so much for the answer!
I also would like to ask you about changes for the header in the mobile version, it is necessary to install the plugin? I am very happy with the mobile version without it and I wouldnt like to install the mobile plugin only for basic changes.
I would like to know if I can change the bakcground color of the mobile menu and also change the option of smart sticky mobile menu, because I changed it in the theme panel but only happens in the computer version not mobile version.
Thank you so much again
The mobile theme plugin is not required, it is optional to install it. This plugin is intended to be used if you would like to present a different and simpler version of the website
– https://forum.tagdiv.com/the-mobile-theme/
So it is up to you whether you want to use it or not. When the mobile plugin is not active the background image can be changed as shown above, and the colors here
– https://www.screencast.com/t/ZXq72ZvIEjfp
A setting for setting a color when the menu is sticky does not exist, this could only be done with CSS. Like this
– https://www.screencast.com/t/QZD4ylWkngz
This code will make the menu bar have a different color chosen by you, when the menu is sticky. It can be entered in Theme panel->Advanced CSS in the phones section
.td-header-menu-wrap.td-affix .td-header-main-menu{
background-color: red!important;
}
Thanks