
Originally Posted by
Angiex1
Hi, I have tried everywhere to make these changes and cant figure it out, details in sig.
Have attached a picture as easier for me to explain.
No 1 I want to add -Register after login link so it reads log in - register I also want the shopping cart up there and not as a side box.
No 2 I want to centre the logo, have followed the docs section but have managed to change it but cannot centre it.
No 3 I want to remove this bar and the home link etc completely. I can change the colours but it isnt needed for me.
Any directions would be great
Thank you
1. To change the wording of the "Login" link to "Login - Register", you'll make a template-override version of /includes/languages/english/header.php (i.e. copy that file to your current template's /includes/languages/english/YOUR_TEMPLATE) and edit the define statement for HEADER_TITLE_LOGIN. The shopping-cart link will show once a customer has placed an item into their cart.
2. You'll need to edit your current template's /templates/tpl_index_default.php, changing the line that reads
Code:
?>
<div id="indexDefault-defineContent" class="defineContent"><?php require($define_page); ?></div>
<?php } ?>
to
Code:
?>
<div id="indexDefault-defineContent" class="defineContent text-center"><?php require($define_page); ?></div>
<?php } ?>
3. That's the site's "breadcrumbs" ... I'm not sure why you'd want to remove that, but you can totally disable the Breadcrumbs via Configuration :: Layout Settings :: Define Breadcrumb Status.