- Posts: 4
- Thank you received: 0
Template Cut Off in IE8
-
Lega
Inactive member - New Member
Less
More
12 years 9 months ago #17245
by Lega
Replied by Lega on topic Re: Template Cut Off in IE8
Hello, thanks again for your help!
the page ( www.isidegestioni.it/home-page/le-nostre-certificazioni.html ) is ok with the: min-height:1200px;
But other pages:
www.isidegestioni.it/features/rassegna-stampa.html
www.isidegestioni.it/off-lav.html
are cutted before the end.
So I tried with:
min-height:1800px;
In this way I can see all pages in IE8, but at the same time there is a lot of white space in Firefox, Chrome, etc...
Is there a way to set the css instruction only for IE8, I dont'n know, but for example something like
[if IE 8]
min-height:1800px;
[end if ie 8]
and where should I insert that code?
Now the template_css.css is set with
min-height:1800px;
so that you can see the result.
Thanks again.
the page ( www.isidegestioni.it/home-page/le-nostre-certificazioni.html ) is ok with the: min-height:1200px;
But other pages:
www.isidegestioni.it/features/rassegna-stampa.html
www.isidegestioni.it/off-lav.html
are cutted before the end.
So I tried with:
min-height:1800px;
In this way I can see all pages in IE8, but at the same time there is a lot of white space in Firefox, Chrome, etc...
Is there a way to set the css instruction only for IE8, I dont'n know, but for example something like
[if IE 8]
min-height:1800px;
[end if ie 8]
and where should I insert that code?
Now the template_css.css is set with
min-height:1800px;
so that you can see the result.
Thanks again.
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 9 months ago #17252
by ivan.milic
Replied by ivan.milic on topic Re: Template Cut Off in IE8
You you can ann conditional style block in index.php of template.
<!--[if lt IE 9]>
<style type="text/css">
.column_left{
min-height:1800px;
}
</style>
<![endif]-->
add it just above the </head>
<!--[if lt IE 9]>
<style type="text/css">
.column_left{
min-height:1800px;
}
</style>
<![endif]-->
add it just above the </head>
Please Log in to join the conversation.
-
Lega
Inactive member - New Member
Less
More
- Posts: 4
- Thank you received: 0
12 years 9 months ago #17257
by Lega
Replied by Lega on topic Re: Template Cut Off in IE8
GREAT!
REALLY THE FASTER TECH SUPPORT I EVER MET!
Thank you very much for your patience and kindness with just a beginner.
Best regards.
REALLY THE FASTER TECH SUPPORT I EVER MET!
Thank you very much for your patience and kindness with just a beginner.
Best regards.
Please Log in to join the conversation.
-
Igordesign
Inactive member - New Member
Less
More
- Posts: 1
- Thank you received: 0
12 years 8 months ago #17730
by Igordesign
Replied by Igordesign on topic Re: Template Cut Off in IE8
I inserted the code but unfortunately the problem is not solved:
www.agapimare.it/index.php?option=com_co...cle&id=31&Itemid=107
www.agapimare.it/index.php?option=com_co...cle&id=31&Itemid=107
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 8 months ago #17739
by ivan.milic
Replied by ivan.milic on topic Re: Template Cut Off in IE8
try also with column_right:
<!--[if lt IE 9]>
<style type="text/css">
.column_left{
min-height:1800px;
}
.column_right{
min-height:1800px;
}
</style>
<![endif]-->
<!--[if lt IE 9]>
<style type="text/css">
.column_left{
min-height:1800px;
}
.column_right{
min-height:1800px;
}
</style>
<![endif]-->
Please Log in to join the conversation.
-
milouze12
Inactive member - New Member
Less
More
- Posts: 1
- Thank you received: 0
12 years 8 months ago #17748
by milouze12
Replied by milouze12 on topic Re: Template Cut Off in IE8
Hello !
First i have the solution !
but i have very hangry by this site ! it's not serious develloper, i buy one template but not two !
Ok there are probleme with ie but you can search the solution but no you proposed the same solution since a mounth !! Newbie developer and worker !!
The solution for the other for ie 8 :
It is hack css :
.content_wrap, .content_wrap_noleft, .content_wrap_noright, .content_wrap_noleft_noright, .column_left, .column_right {
margin-bottom:-<?php echo $mnuFlshesTopMovement; ?>px;
margin-bottom: 0px\0/;
}
It work but maybe change the px for your site and test
And for ie 7 for the menu over the logo the solution :
add in layout.css this "position :relative;" in :
.main_container {
margin:10px auto;
overflow:hidden;
position: relative;
}
good luck for the user and a little serious for this site
First i have the solution !
but i have very hangry by this site ! it's not serious develloper, i buy one template but not two !
Ok there are probleme with ie but you can search the solution but no you proposed the same solution since a mounth !! Newbie developer and worker !!
The solution for the other for ie 8 :
It is hack css :
.content_wrap, .content_wrap_noleft, .content_wrap_noright, .content_wrap_noleft_noright, .column_left, .column_right {
margin-bottom:-<?php echo $mnuFlshesTopMovement; ?>px;
margin-bottom: 0px\0/;
}
It work but maybe change the px for your site and test
And for ie 7 for the menu over the logo the solution :
add in layout.css this "position :relative;" in :
.main_container {
margin:10px auto;
overflow:hidden;
position: relative;
}
good luck for the user and a little serious for this site
Please Log in to join the conversation.
Time to create page: 0.102 seconds