- This topic has 1 reply, 2 voices, and was last updated 5 years ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.


Home › Forums › Pro Themes › Signify Pro › Submenu on hover unfolds on left side of the menu item. I need on right.
Tagged: submenu
Hi. I have submenu items and 2nd level submenu items in my menu. On hover they show up on the left side of the parent menu item. I want them show up on right side. Is it possible to change it somehow?
Hello
Try this css to align the menu sub-menu at the right side
@media only screen and (min-width: 75em){
.navigation-classic .main-navigation ul ul li:hover>ul, .navigation-classic .main-navigation ul ul li.focus>ul {
left: 100%;
right: auto;
}
.navigation-classic .main-navigation ul li:hover>ul, .navigation-classic .main-navigation ul li.focus>ul {
left: 0;
right: auto;
}
.navigation-classic .main-navigation ul ul .menu-item-has-children>a:after, .navigation-classic .main-navigation ul ul .page_item_has_children>a:after {
-webkit-transform: rotate( 270deg );
-moz-transform: rotate(270deg);
-ms-transform: rotate(270deg);
transform: rotate( 270deg);
}
}
Add above css in the additional css
regards,
| Cookie | Duration | Description |
|---|---|---|
| cookielawinfo-checkbox-analytics | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics". |
| cookielawinfo-checkbox-functional | 11 months | The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional". |
| cookielawinfo-checkbox-necessary | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary". |
| cookielawinfo-checkbox-others | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other. |
| cookielawinfo-checkbox-performance | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance". |
| viewed_cookie_policy | 11 months | The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. |



