Need some code help here - CSS

To start with, neither of these are valid
float: left: 20;
position: left:200;

That would/should be
float: left
position: (absolute, fixed, relative, static or inherit)
left: 200px

However, to get the tab over to the left, simply remove the auto margin from #sliding-panel .tab .toggle as it's centering that div to the middle of the screen.
 
To start with, neither of these are valid
float: left: 20;
position: left:200;

That would/should be
float: left
position: (absolute, fixed, relative, static or inherit)
left: 200px

However, to get the tab over to the left, simply remove the auto margin from #sliding-panel .tab .toggle as it's centering that div to the middle of the screen.

Hi,

Yes, you were right. Just did that right before you posted hehe!

thanks buddy!
 
Back
Top Bottom