-
AuthorPosts
-
November 8, 2013 at 10:06 am #192087
Hi!
I am using a child items in the left sidebar menu, it results in a dropdown menu, that dissapears when the the mouse is not there. Since the menu is in the sidebar, I would like to have the child links show after the partent is clicked.
I have been able to change the styling of the dropdown menu to fit the template, but unfotunately can’t figure out how to make it stick.
Here is a sceenshot:
Thanks!
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
November 11, 2013 at 8:36 am #511801It’s very difficult to guess and suggest the solution for this problem based on a screenshot. Please send me URL of your site and let me know if you have changed anything in css style. I shall help you to find the solution.
November 11, 2013 at 12:51 pm #511838The URL is: http://www.uwerk.at. All the changes I made are in custom.css. For the dropdown menu I have only changed the color and removed the border+shaddows.
Thanks.
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
November 12, 2013 at 6:37 am #511922<blockquote>I would like to have the child links show after the partent is clicked. </blockquote>
With my below solution you can show the child links after the parent is clicked.
Open templates/uwerk/css/custom.css file
from
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
display: none;
float: left;
min-width: 160px;
list-style: none;
background-color: #fff
border: 0px ;
border: 0px ;padding: 0;
margin: 0;
-webkit-border-radius: 0 0 0 0;
-moz-border-radius: 0 0 0 0;
border-radius: 0 0 0 0;
-webkit-box-shadow: 0 0 0 rgba(0,0,0,0);
-moz-box-shadow: 0 0 0 rgba(0,0,0,0);
box-shadow: 0 0 rgba(0,0,0,0);
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;
}
Change to
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
display:block !important;
float: left;
min-width: 160px;
list-style: none;
background-color: #fff
border: 0px ;
border: 0px ;
padding: 0;
margin: 0;
-webkit-border-radius: 0 0 0 0;
-moz-border-radius: 0 0 0 0;
border-radius: 0 0 0 0;
-webkit-box-shadow: 0 0 0 rgba(0,0,0,0);
-moz-box-shadow: 0 0 0 rgba(0,0,0,0);
box-shadow: 0 0 rgba(0,0,0,0);
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;
}
Let me know if I do not did not understand your request.
1 user says Thank You to Ninja Lead for this useful post
November 12, 2013 at 1:37 pm #511984HI!
Thank you so much. It worked!!!
AuthorPostsViewing 5 posts - 1 through 5 (of 5 total)This topic contains 5 replies, has 2 voices, and was last updated by sobini 11 years ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Sidebar Menu – change dropdown
Viewing 5 posts - 1 through 5 (of 5 total)