Jump to content

[SOLVED] Move homepage image below text


owas

Recommended Posts

Hi, guys loving presta shop :)
the store is set so the image is above the text on the home page, I would prefer to swap these around so the text is on the top and the image under this, could some one be so kind as to show where in what file I need to change.
also,

ta
Owain

Link to comment
Share on other sites

Go and find the file "editorial.tpl" which is located modules>>editorial

Change from this>

<!-- Module Editorial -->

   {if $xml->body->home_logo_link}body->home_logo_link|escape:'htmlall':'UTF-8'}" title="{$xml->body->$title|escape:'htmlall':'UTF-8'|stripslashes}">{/if}
       {if $homepage_logo}body->$title|escape:'htmlall':'UTF-8'|stripslashes}" />{/if}
   {if $xml->body->home_logo_link}{/if}
   {if $xml->body->$logo_subheading}{$xml->body->$logo_subheading|stripslashes}{/if} 
   {if $xml->body->$title}{$xml->body->$title|stripslashes}{/if}
   {if $xml->body->$subheading}{$xml->body->$subheading|stripslashes}{/if}
   {if $xml->body->$paragraph}{$xml->body->$paragraph|stripslashes}{/if}

<!-- /Module Editorial -->



To this>

<!-- Module Editorial -->

   {if $xml->body->home_logo_link}body->home_logo_link|escape:'htmlall':'UTF-8'}" title="{$xml->body->$title|escape:'htmlall':'UTF-8'|stripslashes}">{/if}
   {if $xml->body->home_logo_link}{/if}
   {if $xml->body->$logo_subheading}{$xml->body->$logo_subheading|stripslashes}{/if} 
   {if $xml->body->$title}{$xml->body->$title|stripslashes}{/if}
   {if $xml->body->$subheading}{$xml->body->$subheading|stripslashes}{/if}
   {if $xml->body->$paragraph}{$xml->body->$paragraph|stripslashes}{/if}
   {if $homepage_logo}body->$title|escape:'htmlall':'UTF-8'|stripslashes}" />{/if}

<!-- /Module Editorial -->



Remember to ALWAYS take a backup before editing any file.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...