Shape 5

Joomla Templates => Restaurante - Club => : bigassmo April 12, 2012, 09:17:19 PM



: mod_S5MapIt window size
: bigassmo April 12, 2012, 09:17:19 PM
I have successfully played with the various resizing parameters of the mod_S5MapIt module but on variable is driving me nuts.

look at chefhorst.com

You can see it is pushing the image out of the frame to its right.

What I do not get is all the width height changes to the box, and the address city etc fields change when I change the numbers but the form itself does not ONLY ON WIDTH???

Here is the php

<div style="width:120px;height:230px;font-size:11px;margin-left:22px;" id="s5_mapitinput">

<form name="form1" action="">

Right above it I see

<script type="text/javascript">//<![CDATA[

document.write('<link href="<?php echo $LiveSite ?>/modules/mod_S5MapIt/mapit/styles.css" rel="stylesheet" type="text/css" media="screen" />');

//]]></script>

but there is no style.css in that folder.



: Re: mod_S5MapIt window size
: jonahh April 13, 2012, 12:45:40 PM
When 2 modules are published they both go to 50% so widths are set here:

This is first module where map it is published:

#s5_user3_50 {
    float:left;
    margin-left:6px;
    padding-top:10px;
    width:47%;
}
template2_css.css (line 1403

This is the other:

#s5_user4_50 {
    float:left;
    margin-left:6px;
    padding-top:10px;
    width:47%;
}
template2_css.css (line 1409

Regards,


: Re: mod_S5MapIt window size
: bigassmo April 13, 2012, 03:34:56 PM
I also mistakenly looked at template.css not template2.

Thanks for the help.