hoiyho,
cool down. templates are not a bad concept of joomla and every webpage use html/css so "hello!".
@Michael+B
One solution:
In the administration surface go to the "Template Manager" below "Extensions". Push on your current using template. In my case its JA_Purity. Push "Edit HTML" top right.
Now, use the Firefox find function (STRG+F) and put into the search field (down left) "user1".
U'll see something like that:
Code:
<?php
$spotlight = array ('user1','user2','top','user5');
$botsl = $tmpTools->calSpotlight ($spotlight,99,22);
if( $botsl ) :
?>
<!-- BEGIN: BOTTOM SPOTLIGHT -->
<div id="ja-botslwrap">
<div id="ja-botsl" class="clearfix">
<?php if( $this->countModules('user1') ): ?>
<div class="ja-box<?php echo $botsl['user1']['class']; ?>" style="width: <?php echo $botsl['user1']['width']; ?>;">
<jdoc:include type="modules" name="user1" style="xhtml" />
</div>
<?php endif; ?>
The interesting part is:
Code:
<div class="ja-box<?php echo $botsl['user1']['class']; ?>" style="width: <?php echo $botsl['user1']['width']; ?>;">
This is your "user1" position field. To change the width, delete the PHP brackets behind the width declaration and give them your individual width. Now, it can look like:
Code:
<div class="ja-box<?php echo $botsl['user1']['class']; ?>" style="width: 100px;">
If ' px ' is not what u want, u can use ' % ' to decrease or increase the width. Make sure u have not forgotten any symbols like ' ; ' or ' " '.
"Save" it. Finished. Congratulation u have hacked it.
Miscellaneous:
- to translate a web page u can use e.g. google functionality. google translate the whole page for free.
- programmers are arrogant. yes, please transfer 25 euro for my solution.
- better use wordpress..hmmm, sure u using wordpress. if u like to have a better programm to build webpages use Adobe Dreamweaver (CS5). Its fast to learn, easy to create individual layouts, expandable and u dont have to be a web-programmer. yeahaa!
Stay nosy, cheers!