We want to keep this for the top-level navigation; however, we would like to add secondary navigation. When we do this, it is applying the last link class and making the last option in the secondary drop down:
I attempted to contact Inbound Pixels (the template creator) but have not gotten a response.
Can someone help me with CSS to keep the primary navigation as it appears today, but not apply the "last-of-type" treatment to the secondary navigation?
Thanks. This should be an easy fix to implement. In the starter.min.css file that has the CSS statement we are looking at change:
li:last-of-type
to
li.hs-menu-depth-1:last-of-type
Then only the top level menu depth will have the green button at the end of the menu and subsequent levels of your drop-down will be excluded from the statement.
I looked at the link you posted, but that link doesn't appear to have the drop down menus. What you are going to have to do is update that statement to be more specific to only target the top-level li items. Can you post an example with the drop down so we can more specific with assistance?
Thanks. This should be an easy fix to implement. In the starter.min.css file that has the CSS statement we are looking at change:
li:last-of-type
to
li.hs-menu-depth-1:last-of-type
Then only the top level menu depth will have the green button at the end of the menu and subsequent levels of your drop-down will be excluded from the statement.