Dear bgies,
If you want to set the min-width as well as the max-width you can try as following
Copy the file of pluginssystemjat3base-themesdefaultblockscss.php and put it into the folder of templatesja_portfolioblocks
Open the copied file,Look for this code at the bottom file
[PHP] <?php
$mainwidth = $this->getMainWidth();
if ($mainwidth) : ?>
body.bd .main {width: <?php echo $mainwidth ?>;}
body.bd #ja-wrapper {min-width: <?php echo $mainwidth ?>;}
<?php endif; ?>[/PHP]
change it to
[PHP] <?php
$mainwidth = $this->getMainWidth();
if ($mainwidth) : ?>
body.bd .main {width: <?php echo $mainwidth ?>;}
body.bd #ja-wrapper {min-width: <?php echo $mainwidth ?>px;max-width: <?php echo $mainwidth ?>px}
<?php endif; ?>[/PHP]
Also to set the percent with for your right column just go to your template back-end >> Layout tabs ,going to edit your actived layout (it may the default layout),you would see the middle blocks tag like this
<blocks name=”middle” colwidth=”20″>
<block name=”content-mass-top” style=”raw”>content-mass-top</block>
<block name=”inset1″ style=”jaxhtml”>left</block>
<block name=”right1″ style=”jaxhtml”>right</block>
</blocks>
Here you just need to change the value of colwidth it is percent width of your column
I hope these make sense.