
Originally Posted by
traytray
I'd like to remove the Back button from my Page 2. I believe it would be somewhere in here:
includes/templates/template_default/templates>tpl_page_2_default.php
Probably this row:
<div class="buttonRow back"><?php echo zen_back_link() . zen_image_button(BUTTON_IMAGE_BACK, BUTTON_BACK_ALT) . '</a>'; ?></div>
</div>
I don't know how to change it to remove the button.
This is NOT in my overrides folder. Is that correct?
http://designerperfumesnob.authsafe.com/page_2.html
You don't need to change any PHP code to 'hide' the button. Just create the file /includes/templates/piccadilly_posh/css/page_2.css that contains
Code:
.buttonRow { display: none; }
That will cause the button to "not display" for the page_2 page only.