I'm helping a friend with her website, which she created in squarespace... she simply wants the three home page images to be overlapping... the images are located in several divs inside of divs. I'm trying to do a hack where I put absolute positioning on the divs so I can position them where I want them and also overlap them, and it works when I'm looking at the site in firebug, but once I add the custom code in squarespace, it doesnt work! Frustrating... Does anybody have success in squarespace with inserting your own CSS in order to manipulate positioning of divs?
Here is the website: http://www.marciahindsadg.com/
And here is the code that works for me in firebug, but not once I put it in squarespace's custom css section:
<style type="text/css">
<!--- Film image block -->
#yui_3_17_2_1_1423953053128_228 {
left: -110px;
}
<!--- Television image block -->
#yui_3_17_2_1_1423953253236_246 {
right: 150px;
top: -20px;
}
<!--- Fantasy image block -->
#yui_3_17_2_1_1423953253236_211 {
z-index: 100;
left: 550px;
top: 115px;
}
</style>