- Posts: 4
- Thank you received: 0
modules not aligning properly
-
plumbingdeals2
Inactive member - Topic Author
- New Member
Less
More
12 years 1 week ago #24263
by plumbingdeals2
modules not aligning properly was created by plumbingdeals2
as you can see from the attached image, mod positions advert1 and advert2 are not aligning properly, while not shown, i have the same problem with user5 and user6
live(test) can be viewed here... www.plumbing-deals.dreamhosters.com/
live(test) can be viewed here... www.plumbing-deals.dreamhosters.com/
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 1 week ago #24276
by ivan.milic
Replied by ivan.milic on topic modules not aligning properly
open index.php of template, find this:
modify
$upperModuleWidth = round($upperModuleWidth, 0);
like this:
$upperModuleWidth = round($upperModuleWidth, 0) - 1;
Code:
if($uppermodules) {
$upperModuleWidth = $templateWidth / $uppermodules - $upperMargins;
$upperModuleWidth = round($upperModuleWidth, 0);
}
if($bottommodules) {
$bottomModuleWidth = $templateWidth / $bottommodules - $bottomMargins;
$bottomModuleWidth = round($bottomModuleWidth, 0);
}
if($footermodules) {
$footerModuleWidth = $templateWidth / $footermodules - $footerMargins;
$footerModuleWidth = round($footerModuleWidth, 0);
}
modify
$upperModuleWidth = round($upperModuleWidth, 0);
like this:
$upperModuleWidth = round($upperModuleWidth, 0) - 1;
Please Log in to join the conversation.
Time to create page: 0.165 seconds