Jump to content

How to make drop down menu folder transparent

Recommended Posts

On 4/15/2021 at 1:51 PM, lion_the_el said:

Site URL: https://www.noiristhenewnoir.com/contact

Hello,

I'm trying to find out how to make the drop down menu on my navigation transparent or translucent rather than a black box. Can anyone other any assistance?

try this custom css

body:not(.header--menu-open) .header-nav-folder-content {
    background-color: transparent;
}

image.thumb.png.a360bd59886fa95d8384f2b26cb76796.png

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 Sparkplugin Customisations Browsers (Browse +100 Spark plugin customisations)
🥳 Elfsight Template Browsers (Browse +1000 Elfsight widget Templates)

If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you!

 

Link to comment
  • 7 months later...
31 minutes ago, Javier33 said:

This worked! Any code i can add to make the dropdown text centered?

Can you share your site with protected password so we can take a look?

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 Sparkplugin Customisations Browsers (Browse +100 Spark plugin customisations)
🥳 Elfsight Template Browsers (Browse +1000 Elfsight widget Templates)

If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you!

 

Link to comment
On 12/7/2021 at 4:45 AM, Javier33 said:

This worked! Any code i can add to make the dropdown text centered?

Add to Design > Custom CSS

/* dropdown text center */
.header-nav-folder-item a {
    text-align: center;
}

 

Email me if you have need any help (free, of course.). Answer within 24 hours. 
Or send to forum message

Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)

Link to comment
  • 2 months later...
On 2/21/2022 at 4:51 PM, ilonas said:

Thanks so much.

I now do have a transparent drop down folder menu. But depending on the page you are on, the text is not always best visible. Is there a way I can blur the background of the folder menu, just like you can do with the header?

Ilona

What is your site url? We can check your case easier

Email me if you have need any help (free, of course.). Answer within 24 hours. 
Or send to forum message

Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)

Link to comment
23 minutes ago, RaulSantos said:

I have the same issue. These codes not worked for me. Using bedford 7.0

www.raulsantos.net

You want to set the background from:

image.thumb.png.5ff01958db12e40b1a551cd942299e8a.png

to something like this, don't you?

image.thumb.png.679b8f7e3f5949a78007ab47f5435e1b.png

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 Sparkplugin Customisations Browsers (Browse +100 Spark plugin customisations)
🥳 Elfsight Template Browsers (Browse +1000 Elfsight widget Templates)

If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you!

 

Link to comment
On 3/2/2022 at 9:00 PM, RaulSantos said:

I have the same issue. These codes not worked for me. Using bedford 7.0

www.raulsantos.net

Add to Design > Custom CSS

/* dropdown transparent */
.subnav {
    background-color: transparent !important;
}

 

Email me if you have need any help (free, of course.). Answer within 24 hours. 
Or send to forum message

Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)

Link to comment
  • 4 months later...
4 hours ago, FurlaStudio said:

wait what? how do you change the opacity of the menu on squarespace without css. please tell me there is a way. how ridiculous something like this would need a custom code??

Indeed, these above solutions in this post is just the Css (or SCSS) code. We set them in Home > Design > Custom Css

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 Sparkplugin Customisations Browsers (Browse +100 Spark plugin customisations)
🥳 Elfsight Template Browsers (Browse +1000 Elfsight widget Templates)

If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you!

 

Link to comment
  • 6 months later...

You can try adding to Home > Design > Custom Css

.tweak-header-primary-nav-hover-style-active .Header-nav .Header-nav-folder {
  background-color: transparent;
}

Support me by pressing 👍  or marking as solution if this useful for you

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 Sparkplugin Customisations Browsers (Browse +100 Spark plugin customisations)
🥳 Elfsight Template Browsers (Browse +1000 Elfsight widget Templates)

If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you!

 

Link to comment

My testing

image.png.2589d942d1979b8a203fe61a1369f371.png

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 Sparkplugin Customisations Browsers (Browse +100 Spark plugin customisations)
🥳 Elfsight Template Browsers (Browse +1000 Elfsight widget Templates)

If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you!

 

Link to comment
8 hours ago, Beyondspace said:

You can try adding to Home > Design > Custom Css

.tweak-header-primary-nav-hover-style-active .Header-nav .Header-nav-folder {
  background-color: transparent;
}

Support me by pressing 👍  or marking as solution if this useful for you

Thank you so much!!! Worked perfectly!! 

Link to comment
  • 3 weeks later...
  • 1 year later...
On 4/19/2021 at 1:12 AM, tuanphan said:

@lion_the_el Add to Design > Custom CSS

On 4/19/2021 at 1:12 AM, tuanphan said:

@lion_the_el Add to Design > Custom CSS

/* transparent dropdown */
.header-nav-folder-content {
    background-color: transparent !important;
}

 

is there a specific version of this custom CSS for Avenue template ??   thanks!

 

Link to comment
3 hours ago, ChuckG-Art said:

 

Can you share your site so I can check?

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 Sparkplugin Customisations Browsers (Browse +100 Spark plugin customisations)
🥳 Elfsight Template Browsers (Browse +1000 Elfsight widget Templates)

If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you!

 

Link to comment
22 minutes ago, ChuckG-Art said:

I think we should set it a little transparent with the following code

#topNav nav .folder-collection .subnav {
  background: rgba(45, 42, 42, 0.8);
}

My testing

image.thumb.png.9e193d65bd3aa322b544af65adf8a60a.png

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 Sparkplugin Customisations Browsers (Browse +100 Spark plugin customisations)
🥳 Elfsight Template Browsers (Browse +1000 Elfsight widget Templates)

If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you!

 

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.