Re: Rustic Template Support Thread
Quote:
Originally Posted by
xtreme-exhibits
Hello,
I just started customizing this template. I made it a smaller width - 800 px for now.
I'm finding that the only page that didn't reduce in width. I think it's cause the message box is too large.
Anyone know how to fix this?
thanks!
My site:
http://creationsremembered.com/index...age=contact_us
If you click on the other pages you'll see that they are smaller. (i know its in mainenance mode but you can still get the picture.)
Thanks!
Open includes/templates/rustic/css/stylesheet.css
find the following declaration and change the width as indicated by the highlight. currently the width is set to 800px (the same width as the rest of the site.
TEXTAREA {
/* float: left;*/
margin: auto;
display: block;
width: auto;
}
Re: Rustic Template Support Thread
You're so helpful! thanks so much!
Re: Rustic Template Support Thread
Clyde:
I am trying to put subcatagories in my catagories menu and it doesn't show the subcatagories when clicking on the main catagory it just displays everything in the main catagory like it is just is one catagory with no subs. Is there a trick to doing this? I have seen some zen cart sites that do that.
Thanks
Gordon
Re: Rustic Template Support Thread
Quote:
Originally Posted by
GHSMan
Clyde:
I am trying to put subcatagories in my catagories menu and it doesn't show the subcatagories when clicking on the main catagory it just displays everything in the main catagory like it is just is one catagory with no subs. Is there a trick to doing this? I have seen some zen cart sites that do that.
Thanks
Gordon
This is not template specific... but;
You need to create your subcategories within your categoires
admin -> catalog -> categories/products
create your category
Then click the small folder on the left of the category name
On this screen just click the "new category" button and create your new "subcategory"
Now you can add your products.
You might want to check these articles in the tutorials/FAQ section
www.zen-cart.com/tutorials/index.php?article=56
www.zen-cart.com/tutorials/index.php?article=271
Re: Rustic Template Support Thread
One more question...
I've got a funny gray bar running at the top of my page between the "Welcome Guest" and the "Shopping Cart" right under the header.
Suggestions on how i make that gray line go away?
Also, i see that the area behind the Welcome Guest" and "Shopping Cart" lines at the top is colored. Where in the CSS do i adjust the color behind the words?
www.creationsremembered.com
Thanks!!
Re: Rustic Template Support Thread
Quote:
Originally Posted by
xtreme-exhibits
One more question...
I've got a funny gray bar running at the top of my page between the "Welcome Guest" and the "Shopping Cart" right under the header.
Suggestions on how i make that gray line go away?
Also, i see that the area behind the Welcome Guest" and "Shopping Cart" lines at the top is colored. Where in the CSS do i adjust the color behind the words?
www.creationsremembered.com
Thanks!!
open includes/templates/rustic/css/stylesheet.css
find and make the changes as indicated by the highlights
#cartHeader {
position: absolute;
top: 105px;
right: 0;
font-size: 1.2em;
color: #6D0000;
background: #DCD6C4;/*delete this*/
font-weight: bold;
width: auto;
}
.greeting {
position: absolute;
top: 105px;
left: 0;
color: #6D0000;
background: #DCD6C4; /*delete this*/
font-weight: bold;
font-size: 1.2em;
width: auto;
}
1 Attachment(s)
Re: Rustic Template Support Thread
My "cart" is a Modular/Manufactured homes showcase. How can I take off the "shopping cart" tab along the top and the cart count and amount that is in the header?
Thank you.:smile:
Re: Rustic Template Support Thread
Quote:
Originally Posted by
bethalicea
My "cart" is a
Modular/Manufactured homes showcase. How can I take off the "shopping cart" tab along the top and the cart count and amount that is in the header?
Thank you.:smile:
open includes/templates/rustic/css/stylesheet.css
Find and edit the following declaration as indicated by the highlight
#cartHeader {
display:none;
position: absolute;
top: 57px;
right: 0;
font-size: 1.2em;
color: #6D0000;
background: #DCD6C4;
font-weight: bold;
width: auto;
}
Re: Rustic Template Support Thread
Excellent! :D
But the Shopping cart tab is still there. Is there an easy way to do that too?:lookaroun
Re: Rustic Template Support Thread
Quote:
Originally Posted by
bethalicea
Excellent! :D
But the Shopping cart tab is still there. Is there an easy way to do that too?:lookaroun
Same procedure as above except find and edit this declaration in the stylesheet.css
#navMain ul li.cart a {
display:none;
margin:0;
padding: 0 5px 0 4px;
float:left;
background: url(../images/tableftcart.gif) no-repeat left top;
color:#FFF;
text-decoration:none;
}