Hi! I need help: I would create two new sidebar to add in the top-menu, next to the existing sidebar “top right (social)” to give best space at widget “basket” of woocommerce and widget “login form”.
Here’s an example to better understand http://screencast.com/t/pwvxknrG4an
Thanks for the help!
Hi,
I can’t provide you a solution for woocommerce without your site URL(see if we can change something like you want).
Instead for login/out you have to edit menu-top.php and change this span like this: http://screencast.com/t/p8OMviAvQ1
And add this custom css in Theme Panel > Custom Css: http://screencast.com/t/ngCtXMccDpq
.td-header-menu-wrap .td-social-wrap {
float: right;
}
Result:
http://screencast.com/t/u89LqXzk9pJ
http://screencast.com/t/e78PBV4d
Thanks!
Thank you! My website url is: http://www.lacortefollina.com. Now you can help my with the “basket” of Woocommerce?
Hi,
Try this custom css in Theme Panel > Custom Css: http://screencast.com/t/OQCEMKNdDV
.top-header-menu.td_ul_login{
float: right;
width: 100px;
margin-right: 10px;
}
.td-header-menu-wrap .td-social-wrap {
margin-right: 0px!important;
}
Thanks!
Thanks! Now, just to be picky, we can move a little the basket when the user logs in? http://screencast.com/t/Nyu6sQA5aRNd
Then, in the mobile version, as you can see here http://screencast.com/t/JNh3ehhcWPm7 we can move the logo that limits the view on the menu?
Hi,
1. Try to change again span from menu-top.php but now like this and see how it goes: http://screencast.com/t/LWb0WDwz
This change will increase the width: http://screencast.com/t/kWHHVFiAFg
2. Please use this css code for logo in mobile view: http://screencast.com/t/Q01I58cibx7H
@media (max-width: 767px){
.header-style-3 .td-logo img {
position: absolute;
right: 0px;
top: auto;
}
}
Thanks!