Change just category text sizes?
This is in it's very early stages, but I'm running into a few roadblocks in customizing this template.
The site is here:
http://zingslings.com/awe/
There are 3 things I want to do but am unsure how.
1. Categories
-you'll see the categories (baby, bath, body...etc). I'd like to make that text bigger, however keep the 'home, login' text at the top the size it is now. Is this possible?
2. The background showing behind those category links. I've created this image: http://zingslings.com/awe/includes/t...gheader_06.gif to show at the very top to match up with the graphic. However I'd like just solid brown behind the category links, as well as at the very bottom of the site. So I created the new image and named it ngheader_07.gif but am unsure where to put that in the css code.
3. I would like to give a better look to the center of the store (the big white box that just kinda jumps out at you). I'd like to give it some rounded edges. I can easily do this in photoshop - but the question is - where do I put the image to make it line up with the top and bottom of the white box to give it a nice rounded square look?
I really appreciate any help you can give me. Like I said the site still has a long way to go but I don't want to go any further until I have the above mentioned things figured out.
Thanks.
Re: Change just category text sizes?
1.
make a new rule in your stylesheet.css
a.category-top {
font-size: 18px;
}
2.
make a new rule in your stylesheet.css
#navCatTabs {
background-color: #FFFFFF;
}
3.
the images should go in:
/httpdocs/includes/templates/template_default/common/tpl_main_page.php
just make sure the top goes in the beginning, and the footer goes after all the content (i did not look at the file so i dont know where exactly
Re: Change just category text sizes?
Thank you So much stri8ed!! I've worked with the first 2 and it's going well :)
I now have the tpl_main_page.php file open and am wondering where to put my image to make it sit just above the 'white box' I'm thinking it may go around this area (around line 149)
PHP Code:
<table width="100%" border="0" cellspacing="0" cellpadding="0" id="contentMainWrapper">
<tr>
but I'm not sure.
Re: Change just category text sizes?
Quote:
Originally Posted by
zingslings
Thank you So much stri8ed!! I've worked with the first 2 and it's going well :)
I now have the tpl_main_page.php file open and am wondering where to put my image to make it sit just above the 'white box' I'm thinking it may go around this area (around line 149)
PHP Code:
<table width="100%" border="0" cellspacing="0" cellpadding="0" id="contentMainWrapper">
<tr>
but I'm not sure.
i would try putting the top image right before the table
Re: Change just category text sizes?
That worked! Thank you So much for your help!