Page 1 of 1

Site wijkt af van het originele in IE7

Posted: Tue Apr 12, 2011 8:47 pm
by flip0505
Hallo,

in IE8 en IE9 krijg ik mijn website normaal te zien maar in IE7 verspringt de layout. Hoe kan ik ervoor zorgen dat ik een extra stylesheet kan koppelen aan mij layout ? Ik kan misschien in mijn bestaande stylesheet iets toevoegen ??? <!--[if IE 7]><!-->

Kan iemand mij hiermee helpen ?

Re: Site wijkt af van het originele in IE7

Posted: Tue Apr 12, 2011 10:10 pm
by Dr.CSS
Yes you can call a specific style sheet using the name= parameter in the style sheet tag in a <!-- if IE 7 --> thingy...

Re: Site wijkt af van het originele in IE7

Posted: Wed Apr 13, 2011 6:07 am
by flip0505
Dr.CSS wrote:Yes you can call a specific style sheet using the name= parameter in the style sheet tag in a <!-- if IE 7 --> thingy...
Can you give me an example how i can do this ?


{literal}
if IE7]>{cms_stylesheet NAME="here_comes_the_name"}
<![endif]-->
{/literal}

Do i have to place this in the template ?

Re: Site wijkt af van het originele in IE7

Posted: Wed Apr 13, 2011 7:17 am
by deactivated010521
----------

Re: Site wijkt af van het originele in IE7

Posted: Wed Apr 13, 2011 7:32 am
by flip0505
arnoud wrote:I barely use the so called conditional comments. Mostly a website can work without it. If you like to master crossbrowser css and xhtml techniques prepare for a steep learning curve. A good starting point will be: http://www.quirksmode.org/css/condcom.html, maintained by a true dutchmen.
Hey,

i just need the fastest way to solve my problem. What do you think is the best way to solve my problem. Can you give me an axample ?

Re: Site wijkt af van het originele in IE7

Posted: Wed Apr 13, 2011 7:49 am
by M@rtijn
Fastest way: let somebody elso do it :D
Best way: learn what went wrong and change it yourself using hours of your precious time reading books & websites, trying out tutorials & just playing around with html/css to see what happens if you do this or that
;D

Or give us a link so we can see for ourselfs!

EDIT: Dit is gewoon een Nederlands topic! Loopt de doctor de bende weer onduidelijk te maken >:(

Re: Site wijkt af van het originele in IE7

Posted: Wed Apr 13, 2011 8:41 am
by RonnyK
<!--[if lt IE 7]>
{stylesheet name='some-stylesheet'}
<![endif]-->
Ronny

Re: Site wijkt af van het originele in IE7

Posted: Wed Apr 13, 2011 9:57 am
by flip0505
RonnyK wrote:
<!--[if lt IE 7]>
{stylesheet name='some-stylesheet'}
<![endif]-->
Ronny
Dit ga ik direct testen ! Dikke merci Ronny ;)