- Posts: 11
- Thank you received: 0
100% height modules
-
wesmolina
Inactive member -
Topic Author
- New Member
-
Less
More
11 years 6 months ago #32546
by wesmolina
Replied by wesmolina on topic 100% height modules
That css working in
www.inst-rosaliademadrigal.com/index.php/cursos
but not for another pages
www.inst-rosaliademadrigal.com/index.php/bienvenidos
www.inst-rosaliademadrigal.com/index.php/historia
www.inst-rosaliademadrigal.com/index.php/objetivos
www.inst-rosaliademadrigal.com/index.php/prematriculas
www.inst-rosaliademadrigal.com/index.php/presentaciones
www.inst-rosaliademadrigal.com/index.php/clases
www.inst-rosaliademadrigal.com/index.php/recitales
etc
but not for another pages
www.inst-rosaliademadrigal.com/index.php/bienvenidos
www.inst-rosaliademadrigal.com/index.php/historia
www.inst-rosaliademadrigal.com/index.php/objetivos
www.inst-rosaliademadrigal.com/index.php/prematriculas
www.inst-rosaliademadrigal.com/index.php/presentaciones
www.inst-rosaliademadrigal.com/index.php/clases
www.inst-rosaliademadrigal.com/index.php/recitales
etc
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
11 years 6 months ago #32551
by ivan.milic
Replied by ivan.milic on topic 100% height modules
Open index.php of template, replace :
with:
Code:
<!-- heights equalization -->
<script type="text/javascript">
jQuery(document).ready(function(){
if (!jQuery.browser.opera) {
var left_height = jQuery(".column_left").height() - 54;
var right_height = jQuery(".column_right").height() - 54;
if (left_height > right_height) {
jQuery(".content_pad").css({minHeight: left_height});
}else{
jQuery(".content_pad").css({minHeight: right_height});
}
}
if (jQuery.browser.opera) {
jQuery("#product-tabs .nav li a,#product-tabs li a.current").css({background: "#666", color: "#fff"});
}
});
</script>
with:
Code:
<script type="text/javascript">
jQuery(document).ready(function(){
var left_height = jQuery(".column_left").innerHeight();
var right_height = jQuery(".column_right").innerHeight();
var main_height = jQuery(".content_wrap").innerHeight();
var max = left_height;
if(right_height > max) max = right_height;
if(main_height > max) max = main_height;
max += 6;
jQuery(".column_left, .content_wrap, .column_right").css('min-height',max + 'px');
if (jQuery.browser.opera) {
jQuery("#product-tabs .nav li a,#product-tabs li a.current").css({background: "#666", color: "#fff"});
}
});
</script>
The following user(s) said Thank You: wesmolina
Please Log in to join the conversation.
Time to create page: 0.075 seconds