Jump to content
so im using squarespace and im trying to get a block to follow when you scroll down the page using css. that's the code I have put but it won't work?

 

#yui_3_17_2_1_1445504454834_874 .summary-block {

position: fixed ;

}

 

im really new to code so its probably completely wrong

Link to comment
https://linustechtips.com/topic/471497-squarespace-css-help/
Share on other sites

Link to post
Share on other sites

 

so your html should be something like <div class="summary-block></div>

 

then your css should be:

.summary-block {
position: fixed ;
}
 
i have no idea what "#yui_3_17_2_1_1445504454834_874" is

 

its the block id

 

if i just put

 

.summary-block {
position: fixed ;

}

 

it fixed all the summary blocks in place, but i just want one block to do it not all of them. 

Link to comment
https://linustechtips.com/topic/471497-squarespace-css-help/#findComment-6322099
Share on other sites

Link to post
Share on other sites

Its abit hard to help you with just like a few lines of code lol.  Well assuming "#yui_3_17_2_1_1445504454834_874"  represents ONE block you just have your code like

 

#yui_3_17_2_1_1445504454834_874 {

position: fixed ;
}
if that doesnt work just show me your html and css
Link to comment
https://linustechtips.com/topic/471497-squarespace-css-help/#findComment-6322130
Share on other sites

Link to post
Share on other sites

 

Its abit hard to help you with just like a few lines of code lol.  Well assuming "#yui_3_17_2_1_1445504454834_874"  represents ONE block you just have your code like

 

#yui_3_17_2_1_1445504454834_874 {

position: fixed ;
}
if that doesnt work just show me your html and css

 

it was be being stupid...i was using the wrong block id 

Link to comment
https://linustechtips.com/topic/471497-squarespace-css-help/#findComment-6322472
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

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

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×