Preserved Topic: CSS questions |
|
---|---|
Author | Thread |
Maniac (V) Mad Scientist From: Solitary confinement |
posted 12-17-2001 18:00
I'm developing my first CSS only pages and need some help. |
Maniac (V) Mad Scientist with Finglongers From: Cell 53, East Wing |
posted 12-17-2001 23:56
Allewyn: I'm not sure the problem is due to the types of positioning used (although it is a confusing mix of absolute and relative - I'd try and get rid of as much of the positioning as pos. as it isn't required and may cause you problems). I suspect it is more to do with z-indices and the fact that the left and both far right columns are already at their collapsible limit (in 800x600 anyway) - it was the 47px of right padding on the left column which had me fooled for a while!! I'd try to do this with floating rather than positioning and mobrul's page down in site reviews, which you've seen, is a good example of what can be done. Then again it works fine like this and getting floating working well can take a bit of tweaking so its your call. |
Maniac (V) Mad Scientist From: Solitary confinement |
posted 12-18-2001 00:19
Ok, then instead of using relative or absolute positioning, I should use float? Kinda new to this |
Maniac (V) Mad Scientist From: Solitary confinement |
posted 12-18-2001 00:32
Ok, I looked at mobrul's page, as you suggested, and was surprised to see relative positioning, percentage widths, and float for the same object. It appears my mitake is in defining too closely the right or left location of my objects. |
Maniac (V) Mad Scientist with Finglongers From: Cell 53, East Wing |
posted 12-18-2001 01:06
Allewyn: They don't overlap as the float keeps things on the same level and so it floats the element along so it is against the next element. Poorly explained by me but have a look at these resources for a better explanantion: |
Maniac (V) Mad Scientist From: Solitary confinement |
posted 12-18-2001 05:26
Ok, will do! Thanks Emps |