Jump to content

Add Secondary or Footer Navigation to 7.1

Recommended Posts

  • 4 months later...
On 8/26/2020 at 4:49 PM, keymistress said:

This text link method isn't very convenient for developers... Text doesn't style the same way Navigation does -- doesn't take into account spacing between links. 🙃

Can you describe in detail? We can give the code to make style same as navigation

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
  • 1 month later...

Hi all,

I need some help with this too! I am using a text block to add a "footer navigation" but I'm having some trouble w/ the styles. I got the spacing to look good but can anyone help remove the text-decoration underline? I cannot get it to disappear! I basically want it to mock the header nav.

Look at the FOOTER:

https://redesign-90-day-biz.squarespace.com/ 

pw:  WhorunTheWorld?

Here is the css I'm using: 

/* FOOTER  */
footer h3 a:link {
text-decoration: none!important;}
footer h3 a:visited {
text-decoration: none!important;}
footer h3 a:hover {
text-decoration: none!important;}
footer h3 a:active  {
text-decoration: none!important;}

footer h3 a:not(:first-child) {margin-left: 2.5vw;}

 

It's using a custom font, but that shouldn't effect the text-decoration.

Thanks!

Rachel  

Link to comment
12 hours ago, raeroshow said:

Hi all,

I need some help with this too! I am using a text block to add a "footer navigation" but I'm having some trouble w/ the styles. I got the spacing to look good but can anyone help remove the text-decoration underline? I cannot get it to disappear! I basically want it to mock the header nav.

Look at the FOOTER:

https://redesign-90-day-biz.squarespace.com/ 

pw:  WhorunTheWorld?

Here is the css I'm using: 


/* FOOTER  */
footer h3 a:link {
text-decoration: none!important;}
footer h3 a:visited {
text-decoration: none!important;}
footer h3 a:hover {
text-decoration: none!important;}
footer h3 a:active  {
text-decoration: none!important;}

footer h3 a:not(:first-child) {margin-left: 2.5vw;}

 

It's using a custom font, but that shouldn't effect the text-decoration.

Thanks!

Rachel  

It is background image

footer.sections a {
    background-image: none !important;
}

SS 7.1 use background image CSS to set underline

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
  • 5 weeks later...
11 minutes ago, alexis.coates said:

@tuanphan do you know if it's possible to create a navigation menu that wraps around the centered site logo? Before I'd just use a primary nav menu on the left and secondary nav menu on the right. Now it's almost impossible. 

You mean: Left menu - Logo - Right Menu?

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
  • 1 month later...
  • 4 weeks later...
On 10/6/2020 at 1:16 AM, tuanphan said:

It is background image


footer.sections a {
    background-image: none !important;
}

SS 7.1 use background image CSS to set underline

I made it to remove the underline but the color still stay blue. Is there any way to change the color (e.g. black)? Thanks in advance.

Link to comment
1 hour ago, dolceannawu said:

I made it to remove the underline but the color still stay blue. Is there any way to change the color (e.g. black)? Thanks in advance.

Use this

footer.sections a {
    background-image: none !important;
	color: black !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
  • 5 months later...

Anyone have other ideas / workarounds for adding a traditional secondary navigation in 7.1? I've used text and icon links to hyperlink to content on the same or different pages, but it's not as simple as a more traditional secondary nav on main nav hover. Any ideas appreciated. https://cat-walrus-dgh4.squarespace.com/

Bremerton's Admiral Theatre is a 1942 art deco movie house and one of the Northwest's premier live entertainment and event venues. The Admiral Theatre Foundation is a 501c3 nonprofit arts organization responsible for operating and preserving this historic landmark. Our mission is to enrich our local communities through the arts, cultural education and live entertainment.

Link to comment
On 6/30/2021 at 2:26 AM, AdmiralTheatre said:

Anyone have other ideas / workarounds for adding a traditional secondary navigation in 7.1? I've used text and icon links to hyperlink to content on the same or different pages, but it's not as simple as a more traditional secondary nav on main nav hover. Any ideas appreciated. https://cat-walrus-dgh4.squarespace.com/

You can try mega menu.

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 weeks later...

Thank you! I purchased the mega menu and the step 1 code is missing from the product page, so emailed Will to get it. I appreciate the suggestion and will let you know how it all works out.

Bremerton's Admiral Theatre is a 1942 art deco movie house and one of the Northwest's premier live entertainment and event venues. The Admiral Theatre Foundation is a 501c3 nonprofit arts organization responsible for operating and preserving this historic landmark. Our mission is to enrich our local communities through the arts, cultural education and live entertainment.

Link to comment
  • 2 weeks later...
  • 1 month later...
On 9/9/2021 at 10:17 AM, graceandoak said:

Hey @tuanphan - This is probably a dumb question but i can't seem to figure it out. I am using text hyperlinks to create my footer nav since there is no easy way to do it anymore. However, it doesn't look great on mobile. How do I make this work?

https://contrabass-caper-5n75.squarespace.com/
pass: riad

Screen Shot 2021-09-08 at 11.16.18 PM.png

Add to Design > Custom CSS

/* Mobile footer links */
@media screen and (max-width:767px) {
div#block-yui_3_17_2_1_1631156718616_16973 h4 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}
div#block-yui_3_17_2_1_1631156718616_16973 a + strong {
    display: none;
}
div#block-yui_3_17_2_1_1631156718616_16973 a {
    display: block;
    margin-left: 10px;
    margin-right: 10px;
}
}

image.thumb.png.27d96cf1860665ec77d7b5f6b9af94e9.png

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
6 hours ago, tuanphan said:

Add to Design > Custom CSS

/* Mobile footer links */
@media screen and (max-width:767px) {
div#block-yui_3_17_2_1_1631156718616_16973 h4 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}
div#block-yui_3_17_2_1_1631156718616_16973 a + strong {
    display: none;
}
div#block-yui_3_17_2_1_1631156718616_16973 a {
    display: block;
    margin-left: 10px;
    margin-right: 10px;
}
}

image.thumb.png.27d96cf1860665ec77d7b5f6b9af94e9.png

OH wow - thank you so much! Really appreciate this.

Link to comment
  • 3 months later...

I have an issue with my site. I applied the code in the footer as well as in the CSS for my product. My issue is that when the site is viewed from a Mobile phone the letters are not formatted correctly as they are when viewed from a desktop site. My first two products format correctly but the third one does not. I've tried moving the order and still the Kaidence Box product formats incorrectly. I've even tried removing "ence" from Kaidence and the formatting remains off. It still shows the "e" on the line below instead of with "Kaidence. Please Help

The website is Thefoundco.com

Password found1

IMG_4443.jpg

IMG_4444.jpg

Edited by 3xfactor7
missing info
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.