Jump to content

Transparent Mobile Navigation on Brine Template

Go to solution Solved by tuanphan,

Recommended Posts

  • 3 months later...
  • 7 months later...
On 6/29/2021 at 10:46 PM, SouthernSunEvents said:

Tried this code but no luck. Any ideas?

http://www.southernsunevents.com

PW: sse2020

Add to Design > Custom CSS > Then save & reload the site

/* Mobile header transparent */
@media screen and (max-width:640px) {
body.homepage .Mobile-bar.Mobile-bar--top {
    background-color: transparent;
}
body.homepage {
    margin-top: 0 !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
12 hours ago, tuanphan said:

Add to Design > Custom CSS > Then save & reload the site

/* Mobile header transparent */
@media screen and (max-width:640px) {
body.homepage .Mobile-bar.Mobile-bar--top {
    background-color: transparent;
}
body.homepage {
    margin-top: 0 !important;
}
}

 

Works great but now the logo is scrolling and overlapping my banner image text. Punch the code to do tablet too and having the same problem. Thanks!

Edited by SouthernSunEvents
Link to comment
  • 3 weeks later...
On 7/23/2021 at 5:27 PM, SouthernSunEvents said:

No luck on this

1433563946_ScreenShot2021-07-23at6_23_59AM.png.011f7b87a77d53f53e695ccf7f15109b.png

 

Using code below. Do I have it correct?

/* TRANSPARENT MOBILE HEADER - NEED SITEWIDE */
@media screen and (max-width:640px) {
body Mobile-bar.Mobile-bar--top {
    background-color: transparent;
}
body {
    margin-top: 0 !important;
}
}

Can you share link to page in screenshot?

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
18 hours ago, SouthernSunEvents said:

Looking to do site wide but just in case it's:

https://www.southernsunevents.com/contact-us

Try this code >> Then save & reload the site

.tweak-mobile-bar-top-fixed .Mobile-bar--top {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    background-color: transparent !important;
}
@media screen and (max-width:640px) {
body {
    margin-top: 0 !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 hours ago, tuanphan said:
.tweak-mobile-bar-top-fixed .Mobile-bar--top {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    background-color: transparent !important;
}
@media screen and (max-width:640px) {
body {
    margin-top: 0 !important;
}
}

Works great and I adjusted to use max with 991px to convert on tablet view too but now my banner images are a bit cropped at the bottom. Any ideas?

Two more questions:

- I have white logos in code injection on these pages for desktop but they aren't converting on mobile/tablet. Do I need a separate injection for this?

- How can I stick the navigation at top sitewide?

Thanks so much for your help!

1177310819_ScreenShot2021-07-27at11_22_02AM.png.7afef88512c96f6099cfa2f1531231d9.png

Screen Shot 2021-07-27 at 11.24.09 AM.png

Edited by SouthernSunEvents
Link to comment
1 hour ago, SouthernSunEvents said:

Works great and I adjusted to use max with 991px to convert on tablet view too but now my banner images are a bit cropped at the bottom. Any ideas?

Two more questions:

- I have white logos in code injection on these pages for desktop but they aren't converting on mobile/tablet. Do I need a separate injection for this?

- How can I stick the navigation at top sitewide?

Thanks so much for your help!

1177310819_ScreenShot2021-07-27at11_22_02AM.png.7afef88512c96f6099cfa2f1531231d9.png

Screen Shot 2021-07-27 at 11.24.09 AM.png

Just noticed this happened on my two pages without banner images at the top

223513193_ScreenShot2021-07-27at12_28_43PM.png.f8033ff7da935b37d1864048b998d743.png

Link to comment

I have white logos in code injection on these pages for desktop but they aren't converting on mobile/tablet. Do I need a separate injection for this?

Can you share link to a page?

- How can I stick the navigation at top sitewide?

You mean sticky header on scroll?

Q3. overlap

Can you share link to these pages in screenshot? Will need to adjust code on these pages

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

I have white logos in code injection on these pages for desktop but they aren't converting on mobile/tablet. Do I need a separate injection for this?

Can you share link to a page?

- How can I stick the navigation at top sitewide?

You mean sticky header on scroll?

Q3. overlap

Can you share link to these pages in screenshot? Will need to adjust code on these pages

http://www.southernsunevents.com

PW: sse2020

For navigation I just want to keep the nav menu at top of site and don't want it to scroll down

Links to logo/text overlap pages:

https://www.southernsunevents.com/portfolio

https://www.southernsunevents.com/about

Also on these two pages my banner images have been cropped from the bottom on mobile and tablet, any ideas?:

https://www.southernsunevents.com/contact-us

https://www.southernsunevents.com/services

Thanks @tuanphan!

Edited by SouthernSunEvents
Link to comment
21 hours ago, SouthernSunEvents said:

http://www.southernsunevents.com

PW: sse2020

For navigation I just want to keep the nav menu at top of site and don't want it to scroll down

Links to logo/text overlap pages:

https://www.southernsunevents.com/portfolio

https://www.southernsunevents.com/about

Also on these two pages my banner images have been cropped from the bottom on mobile and tablet, any ideas?:

https://www.southernsunevents.com/contact-us

https://www.southernsunevents.com/services

Thanks @tuanphan!

Add to About, Portfolio Page Header

<style>
  @media screen and (max-width:640px) {
  .Site-inner {
    top: 83px;
}
  }
</style>

 

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
3 hours ago, tuanphan said:
<style>
  @media screen and (max-width:640px) {
  .Site-inner {
    top: 83px;
}
  }
</style>

No luck with this code. Any ideas on these items too? Thanks so much for your help

- Keeping navigation at top of the page (no scroll)

- Cropped banner images on the following pages:

http://www.southernsunevents.com/contact-us

http://www.southernsunevents.com/contact-us

Edited by SouthernSunEvents
Link to comment
On 7/30/2021 at 11:41 PM, SouthernSunEvents said:

No luck with this code. Any ideas on these items too? Thanks so much for your help

- Keeping navigation at top of the page (no scroll)

- Cropped banner images on the following pages:

http://www.southernsunevents.com/contact-us

http://www.southernsunevents.com/contact-us

Can you share link to page where you added code? We will check it again

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
On 8/1/2021 at 2:47 AM, tuanphan said:

Can you share link to page where you added code? We will check it again

Just tried this again and now it magically works but now tablet nav is a mess?

Still needing help with the following:

- Keeping navigation at top of the page (no scroll)

- Cropped banner images on the following pages:

http://www.southernsunevents.com/contact-us

http://www.southernsunevents.com/services

 

Screen Shot 2021-08-02 at 12.27.31 PM.png

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.