
Originally Posted by
marcelo63
This issue is only in IE 7. I do not see on FF 2 o FF3
Whe Additional image are present (again issue in IE)
Second Issue
I have severly modified your template and I have left a "space" below drop Menu. This replicate on all the site, just below the black Header drop menu background and on top of center white column
I would like that portion = 0px
Jade :thumbsup, Thank You!
First issue, open up includes/modules/YOUR_TEMPLATE/additional_images.php and change this:
Code:
$col_width = floor(100/$num_images);
} else {
$col_width = floor(100/IMAGES_AUTO_ADDED);
}
to this:
Code:
$col_width = floor(100/$num_images) -.5;
} else {
$col_width = floor(100/IMAGES_AUTO_ADDED) -.5;
}
Second issue:
in your stylesheeet.css change this:
Code:
#contentMainWrapper {
width:71em;
margin:0 auto;
text-align:center;
position:relative;
top:2.18em;
}
to this:
Code:
#contentMainWrapper {
width:71em;
margin:0 auto;
text-align:center;
position:relative;
top:1.4em;
}
Bookmarks