How do I get rid of the "back" button on the information pages (about us page, shipping info, page_2, etc.)
Example: http://www.tehome.net/shop/index.php?main_page=about_us
How do I get rid of the "back" button on the information pages (about us page, shipping info, page_2, etc.)
Example: http://www.tehome.net/shop/index.php?main_page=about_us
Add to your stylesheet
#aboutUsMainContent .buttonRow {display: none;}
Repeat as required for others.
Okay, I did what you said, and it worked for the About Us page, but not the others. Here's what I put in the stylesheet:
#aboutUsMainContent .buttonRow {display: none;}
#pageThreeMainContent .buttonRow {display: none;}
#shippingInfoMainContent .buttonRow {display: none;}
#pageTwoMainContent .buttonRow {display: none;}
#pageFourMainContent .buttonRow {display: none;}
#conditionsMainContent .buttonRow {display: none;}
What did I do wrong?
The others are probably not named like #pageThreeMainContent; you need to see what the actual id is for each page. You can do this in view source, or you can download the Firefox Web Developer extension and find lots of information with that.
I did get the names using view source.