Here is the div:
I got 9 of them with different positions on page so in the .css file I d
.css
Change id="1" to id="one" since you cannot use numbers in CSS to select an id or class. Then just use div#one { // CSS Here } since you don't really need to include the class. After all you can only have one id with a specific name per page.
id="1"
id="one"
div#one { // CSS Here }
id