Hi
1- I need to delete the sub child category from mobile menu.
http://www.wata.cc/up/2015/03/images/w-20075832fd.jpg
2- Make the order of the posts begin from right in mega menu.
http://www.wata.cc/up/2015/03/images/w-c4bd74c797.jpg
3- Make the order of the posts begin from right in categories.
http://www.wata.cc/up/2015/03/images/w-0fbb590b2f.jpg
Hi,
1. Please try this custom css to hide subcategories from mobile menu in Theme Panel > Custom Css: http://screencast.com/t/yRuT7Fge8Vp
.td-mobile-content .sub-menu{
display: none;
}
2. For megamenu use this css code:
.td_mod_mega_menu{
float: right;
}
Result: http://screencast.com/t/07b9plER – http://screencast.com/t/mqFR1oy5
3. Also for category pages: http://screencast.com/t/pP96VMwBqX
.archive .span8.column_container .span6:first-child {
float: right;
margin-left: 4%;
}
.archive .span8.column_container .span6{
margin-left: 0;
}
Please search also on the forum there are many rtl threads that may can help you: https://forum.tagdiv.com/search/rtl/
-
This reply was modified 11 years by
Alin [tagDiv].
Thank you Alin
That’s very good
1- For the mega menu posts please see this (Move the posts) http://www.wata.cc/up/2015/03/images/w-da176923a9.jpg
2- And please I need to do for the blocks in the homepage the same thing that we did for categories (posts order)
http://www.wata.cc/up/2015/03/images/w-796ab9734a.jpg
3- When I try to do a search (In desktop and mobile) the button is on the writing
http://www.wata.cc/up/2015/03/images/w-7dca45d378.jpg
Thanks a lot
Sorry for the inconvenience
There’s a problem in the code that you gave me for the posts order in category, the code effect the category in mobile! http://www.wata.cc/up/2015/03/images/w-cd655f6976.png
.archive .span8.column_container .span6:first-child {
float: right;
margin-left: 4%;
}
.archive .span8.column_container .span6{
margin-left: 0;
}
The last problem has been solved by putting the code in Advanced CSS
Hi,
1. Try this css in Theme Panel: http://screencast.com/t/m2vvb4fKCUU
.td_mod_mega_menu{
margin-left:auto;
margin-right:2.3%;
}
2. For homepage try this custom css: http://screencast.com/t/exSUo2E65qZ
.home .span8.column_container .span6:first-child {
float: right;
margin-left: 4%;
}
.home .span8.column_container .span6{
margin-left: 0;
}
3. Also for search try this custom css: http://screencast.com/t/fcKOVfE4Vp
.header-search-wrap .dropdown-menu .btn{
right: auto;
}
.header-search-wrap .dropdown-menu #td-header-search{
width: 82%;
}
Thanks!
Thank you Alin
Just I noticed that the website begin loading before the Custom Css
For example when I go to somewhere in the website I see the logo go to left then come back to right, same thing with the ad header. How can I let the website load the Custom Css from beginning?
Hi,
Please make sure you also test this without any plugins active and leave just Visual Composer plugin active and also empty cache and purge your files if you use CDN then check again. Also css code is apply in cascade so the default css is loaded and then the custom one.
Thanks!