Jump to content

azazel79it

Members
  • Posts

    9
  • Joined

  • Last visited

azazel79it's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. hi everyone! i have this problem: must put this stuff into xsl (it comes from an html page) <!--[if lte IE 6]> <style type="text/css"> /*<![CDATA[*/ html {overflow-x:auto; overflow-y:hidden;} /*]]>*/ </style> <![endif]--> <!--[if lte IE 6]> <style> /*<![CDATA[*/ #container, #container2 { position:absolute; } /*]]>*/ </style> <![endif]-->but of course the <!-- before the IF means a starting comment in xsl! does anyone knows how to do it? or maybe how i can manage this in css? thx!
  2. didn't worked with bottom! always aligned on top in IE, i solved it with Scott's link, thx anyway for the help!
  3. GREAT Scott, it worked perfectly! u saved my Easter weekend hehehe thx a lot!
  4. thx u, i will let u know for sure if i will solve it
  5. anyway this is the page that put me in trouble: http://www.w3schools.com/css/css_positioning.aspand sorry for being annoying
  6. thx u too Raimo! sorry i answered to u with the precedent message instead to Scott, i'm tired from work and doing my first forum posts in my whole life eheheheheh
  7. thanx Scott but this means that this page is wrong? http://www.w3schools.com/css/css_positioning.aspor (worst in my mind) means that it WAS supported in version 4, but IS NOT supported in version 6 of IE? this is something scary to think about! :)
  8. thanx Scott but this means that this page is wrong? http://www.w3schools.com/css/css_positioning.aspor (worst in my mind) means that it WAS supported, but IS NOT supported in version 6 of IE? this is something scary to think about!
  9. hi everyone, i have this problem: i wish to make a menu aligned to the bottom of the page, that stays there if i resize the window or i scroll vertically the page.here is a small example code, that works with Firefox 1.5.0.1 but seems that the css position:fixed doesn't work with IE (my version is 6.0something) even if on the w3schools css tutorial is said that IE supports it. does anybody knows what's my error? thank u in advance!MY EXAMPLE CODE:<html> <head> <title>BLA BLA PAGE </title> </head> <body> <table width="300px" height="500px" border="1" style="color:yellow; background-color:blue;"> <tr> <td> prova prova prova </td> </tr> </table> <table border="1" style="position:fixed; bottom:0px; color:white; background-color:red;"> <tr> <td> prova prova prova </td> </tr> </table> </body></html>
×
×
  • Create New...