All I could find was old posts on this. I could have sworn I saw the option in the Admin panel.
A back button appears on my info pages. Is there a way to remove that without having to go through each page individually?
All I could find was old posts on this. I could have sworn I saw the option in the Admin panel.
A back button appears on my info pages. Is there a way to remove that without having to go through each page individually?
Trying to see what you're talking about but your site link no longer works.
A little help with colors.
myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.
hi dbltoe
I will like to know how to remove all the back buttons on the info pages (eg Shipping & returns, Privacy Notice, Conditions of use) basically all the pages on my left column., under the categories.
I have included a link for your ref. This is the link to Shipping & returns info page with the orange back button at the bottom
http://www.ragdoll.sg/store/index.ph...e=shippinginfo
You have some serious coding problems there. Don't know where you got the template, but it's miss several standard items and stylesheets. And there is an unclosed div on your pages.
Your back buttons are coded incorrectly as they should be going to the main page.
Any assistance we'd try to give would be hit or miss with this template.
You might try looking for buttonRowback using the developer's tool kit in the admin.
A little help with colors.
myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.
You could try modifying your /includes/templates/custom_premium/css/stylesheet.css file to add (towards the bottom):
That will "hide" the button from display on the shippinginfo page. You can then expand this to look like:Code:#shippingInfo .buttonRow { display: none; }
where you repeat the segment in red, replacing xxxx with the ID of the 'class="centerColumn"' DIV for the page you want to hide the back button. That CSS tells the browser to "not display" anything with a "class=buttonRow" (i.e. your Back button) within an HTML element with an id="xxxx".Code:#shippingInfo .buttonRow, #xxxx .buttonRow { display: none; }
You can use the FireFox addons FireBug and/or Web Developer to view the HTML and styling that your pages generate.