Jump to content

Help getting text box to appear

Go to solution Solved by Ziggy,

Recommended Posts

Hey all, looking to get some help regarding this text box I'm trying to have on my homepage.

Context: This is my portfolio book and I'm using some CSS to create a dropdown menu on the home page, and remove some other elements as well. 

When I edit my site on Squarespace, I can see the text box fine as shown below. 

image.thumb.png.0a40064496fd61f16fdbca319de1143d.png

And then when I visit my site, it looks like this:

image.thumb.png.ad43b4d26ec8a311f69fa848a5658a2a.png
Does anyone have any idea what I can do to solve this and make the line appear for public viewers? 

thank you all!

 

Website link: https://www.ozziecw.com/main

Edited by ozzie1771
Link to comment

Can you share your website URL?

Please like and upvote if my comments were helpful to you. Cheers!

Zygmunt Spray
Squarespace Website Designer
Contact me: 
https://squarefortytwo.com 
Hire me on Upwork!

🔌 Ghost Squarespace Plugins (Referral link)
📈 SEO Space (Referral link)
 SquareWebsites Plugins (Referral link)
 🔲 SQSP Themes (Referral link) 
Spark Plugin (Referral link) 

 Did I help? Buy me a coffee?

Link to comment

I can't see any evidence of that text on your website, is the text in it's own text block?

Please like and upvote if my comments were helpful to you. Cheers!

Zygmunt Spray
Squarespace Website Designer
Contact me: 
https://squarefortytwo.com 
Hire me on Upwork!

🔌 Ghost Squarespace Plugins (Referral link)
📈 SEO Space (Referral link)
 SquareWebsites Plugins (Referral link)
 🔲 SQSP Themes (Referral link) 
Spark Plugin (Referral link) 

 Did I help? Buy me a coffee?

Link to comment

I understand, I'm trying to find out how you added the text so I can troubleshoot. Can you also share the coded you've added as an error in it might be the cause of this.

Please like and upvote if my comments were helpful to you. Cheers!

Zygmunt Spray
Squarespace Website Designer
Contact me: 
https://squarefortytwo.com 
Hire me on Upwork!

🔌 Ghost Squarespace Plugins (Referral link)
📈 SEO Space (Referral link)
 SquareWebsites Plugins (Referral link)
 🔲 SQSP Themes (Referral link) 
Spark Plugin (Referral link) 

 Did I help? Buy me a coffee?

Link to comment

hey sorry for the late reply! 

for sure. Here's the code I currently have for the home page 

Quote

 

<style>
  #header {
  display: none!important;}
</style>

<style>
#footer {
 display: none !important;
}
</style>

 

and this is the code behind the small dropdown menu I have

 

Quote

 

<select id="archive-pages" onchange="window.open ( this.value, '_self' );">

  <option value="#">
  
   WORK
    
    </option>
    
  <option value=/popeyesclw>
  
    Popeyes - Crunchy Little Weirdos 
    
    </option>
    
  <option value=/seattle-kraken-fear-the-deep>
  
    Seattle Kraken - Fear the Deep
    
    </option>
    
  <option value=/popeyessocial>
  
    Popeyes Social
    
    </option>
    
   <option value=/minutemaid>
  
    Minute Maid - Refreshing Bumpers
    
    </option>
<option value=/mercury-insurance>
  
    Mercury Insurance - Out of Home
    
    </option>
  <option value=/nypostspecwork>
  
    Spec Work - NY Post
    
    </option>
  <option value=/about-ozzie>
  
    ozzie nunez
    
    </option>

 

 

thanks for the help so far

Link to comment

What about the text that says ALT: line line line  that we're trying to figure out?

Please like and upvote if my comments were helpful to you. Cheers!

Zygmunt Spray
Squarespace Website Designer
Contact me: 
https://squarefortytwo.com 
Hire me on Upwork!

🔌 Ghost Squarespace Plugins (Referral link)
📈 SEO Space (Referral link)
 SquareWebsites Plugins (Referral link)
 🔲 SQSP Themes (Referral link) 
Spark Plugin (Referral link) 

 Did I help? Buy me a coffee?

Link to comment
1 hour ago, ozzie1771 said:

That text is still there when I enter squarespace's website editor. 

I didn't use coding for that text box. I just added it in as a block

Can you show me a screenshot or even better a screen recording of this, because the text block is simply not appearing in the code, anywhere. 

I can't understand where the problem is coming from, and I need that to be able to help.

Please like and upvote if my comments were helpful to you. Cheers!

Zygmunt Spray
Squarespace Website Designer
Contact me: 
https://squarefortytwo.com 
Hire me on Upwork!

🔌 Ghost Squarespace Plugins (Referral link)
📈 SEO Space (Referral link)
 SquareWebsites Plugins (Referral link)
 🔲 SQSP Themes (Referral link) 
Spark Plugin (Referral link) 

 Did I help? Buy me a coffee?

Link to comment
  • Solution

Thank you for that, very illustrative. That is a very odd problem. 

The only thing I can think is that there's something up with your code, if not, then you've found a system bug. You seem to be missing quotation marks around the values in the options, and the select doesn't have a closing tag, can you try replacing part of the code with this:

<select id="archive-pages" onchange="window.open ( this.value, '_self' );">

<option value="#">
   WORK
</option>
    
<option value="/popeyesclw">
    Popeyes - Crunchy Little Weirdos 
</option>
    
<option value="/seattle-kraken-fear-the-deep">
    Seattle Kraken - Fear the Deep
</option>
    
<option value="/popeyessocial">
    Popeyes Social
</option>
    
<option value="/minutemaid">
    Minute Maid - Refreshing Bumpers
</option>

<option value="/mercury-insurance">
    Mercury Insurance - Out of Home
</option>
  
<option value="/nypostspecwork">
    Spec Work - NY Post
</option>
  
<option value="/about-ozzie">
    ozzie nunez
</option>
  
</select>

Let me know if that has any impact.

Please like and upvote if my comments were helpful to you. Cheers!

Zygmunt Spray
Squarespace Website Designer
Contact me: 
https://squarefortytwo.com 
Hire me on Upwork!

🔌 Ghost Squarespace Plugins (Referral link)
📈 SEO Space (Referral link)
 SquareWebsites Plugins (Referral link)
 🔲 SQSP Themes (Referral link) 
Spark Plugin (Referral link) 

 Did I help? Buy me a coffee?

Link to comment

Amazing, so glad that worked!

Please like and upvote if my comments were helpful to you. Cheers!

Zygmunt Spray
Squarespace Website Designer
Contact me: 
https://squarefortytwo.com 
Hire me on Upwork!

🔌 Ghost Squarespace Plugins (Referral link)
📈 SEO Space (Referral link)
 SquareWebsites Plugins (Referral link)
 🔲 SQSP Themes (Referral link) 
Spark Plugin (Referral link) 

 Did I help? Buy me a coffee?

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.