Please Help With My Template - Joomla! Forum - community, help and support
hi
i have been making joomla template using blank joomla template alexandra schmidt , don't know how can code work can please help....look @ pics , think figure out because cant explain it. on second picture fine on first should notice module position in middle isn't right width should wider. how make because wont work css.
sorry if dont't understand hard explain me new code
if can solve please edit code upload template aswell, , send me.
i have been making joomla template using blank joomla template alexandra schmidt , don't know how can code work can please help....look @ pics , think figure out because cant explain it. on second picture fine on first should notice module position in middle isn't right width should wider. how make because wont work css.
sorry if dont't understand hard explain me new code
if can solve please edit code upload template aswell, , send me.
heres joomla documentation collapsible columns
however looking @ code, suggest try this, havent tried myself tho
change code in index.php
to this
then can define width different results php code follows:
u need set width in accordance width of sidebars
hope wat looking for
code: select all
http://docs.joomla.org/collapsing_columnshowever looking @ code, suggest try this, havent tried myself tho
change code in index.php
code: select all
<div id="maincolumn">
<div id="maincolumn<?php echo (3-$leftbar-$rightbar-$rightbar1); ?>">
<jdoc:include type="modules" name="breadcrumbs" style="xhtml" />
<jdoc:include type="message" />
<jdoc:include type="component" />
</div>
</div>to this
code: select all
<div id="maincolumn<?php echo (3-$leftbar-$rightbar-$rightbar1); ?>">
<jdoc:include type="modules" name="breadcrumbs" style="xhtml" />
<jdoc:include type="message" />
<jdoc:include type="component" />
</div>then can define width different results php code follows:
code: select all
maincolumn0 {width:25%}
maincolumn1 {width:50%}
maincolumn2 {width:75%}
maincolumn3 {width:100%}u need set width in accordance width of sidebars
hope wat looking for
Comments
Post a Comment