cancel
Showing results for 
Search instead for 
Did you mean: 

Seiten Layout Hellowired verändern

Seiten Layout Hellowired verändern

Hallo!

ich suche im Theme hellowired eine Möglichkeit, die Seitenränder wegzubekommen. In der style.css habe ich bei .page die Breite auf 100% gesetzt und margin jeweils auf 0px.

Allerdings hat das keine Auswirkung.

Beim Element untersuchen via Firefox zeigt er mir die Klasse inner-wrapper an, die ich aber in der Style.css nicht finden kann. Sie wird zwar aufgerufen über die 3columns.phtml , aber nirgendwo definiert.

Ich kann sie auch nicht im base oder default-ordner finden.

Hat da wer zufällig einen Hinweis?

4 REPLIES 4

Re: Seiten Layout Hellowired verändern

Hi @DanHopp,

 

Perhaps this will help you ?

http://www.hellothemes.com/forums/topic/changing-column-layout-on-certain-pages/

 

What pages are you trying to change - the whole shop or category layout or ?

 

Regards,

Kent

 

-- Best regards --
Kent Christiansen | Magento Certified Solution Specialist

Re: Seiten Layout Hellowired verändern

thanks 4 the Link  - website is offline Smiley Sad

 

i try to change the whole Shop, because my boss does not want to have the margins from this theme (sry, my english - i hope u understand)

Re: Seiten Layout Hellowired verändern

Hi again @DanHopp,

 

For catalog:

You will need to add this to the layout xml. Locate your local.xml in your theme layout folder (or create it if it doesn't exist) and set the template per page. For example for the default category pages:

 

<?xml version="1.0"?>
<layout version="0.1.0">
   [...]
   <catalog_category_default translate="label">
     <reference name="root">
         <action method="setTemplate"><template>page/2columns-left.phtml</template></action>
     </reference>
   </catalog_category_default>
   [...]
</layout>

 

For CMS pages this can be done from the backend.

 

Let me hear if you have questions. 

-- Best regards --
Kent Christiansen | Magento Certified Solution Specialist

Re: Seiten Layout Hellowired verändern

thank you - i will have to test this