Nav Bar Customization - how to make sublinks transparent?
Prismascape
Registered Users Posts: 4 Beginner grinner
Hi All,
I have a basic question I'm hoping I could get some help on. I am in the process of migrating to the new smugmug (still working in the sandbox) and I have a standard NavBar - with sublinks. I would like to make the sublinks transparent such that only the text appears as dropdown, not the box or the border around it.
So far I've figured out how to change the color of the boxes but not how to make them transparent.
Any help with CSS would be greatly appreciated! My site is www.prismascape.com
Thanks!
I have a basic question I'm hoping I could get some help on. I am in the process of migrating to the new smugmug (still working in the sandbox) and I have a standard NavBar - with sublinks. I would like to make the sublinks transparent such that only the text appears as dropdown, not the box or the border around it.
So far I've figured out how to change the color of the boxes but not how to make them transparent.
Any help with CSS would be greatly appreciated! My site is www.prismascape.com
Thanks!
0
Comments
To make it really transparent go down to 0.5 ... 0.1 ... 0.01 ... 0.0001
My Website index | My Blog
My Website index | My Blog
Attached is a screenshot of the nav bar...see how the top links are text only (with the homepage slideshow visible behind it)? I'm trying to get the sublinks to look like that (text only without showing the box). Hope I am able to explain properly.
Thanks again!
Did you try 0.0001 transparency? It should hide the box.
Might try
background: rgba(0, 0, 0, 0.0001);
or
.... 0.0001) !important;
My Website index | My Blog
.sm-user-ui.yui3-menu-vertical .yui3-menu-children,
.sm-user-ui .yui3-menu-vertical .yui3-menu-children {
background: rgba(0, 0, 0, 0.001) !important;
}
I used the Sierra template for the site design
background-color: rgba(0, 0, 0, 0.001) !important;
You might check other menus like the size in lightbox, this "vertical" might affect those also.
If so might need to make this more specific to only affect this top menu.
.sm-user-ui.yui3-menu-vertical
Although on my site the effect was good for all vertical menus.
examples:
customize drop down
organizer drops
My Website index | My Blog