How do I add an image for center column? I have one for the background. I would like to add one for the header and footer for the center column.
How do I add an image for center column? I have one for the background. I would like to add one for the header and footer for the center column.
There are no headers or footers for the center column. You would have to create them by adding divs and wrappers inside the centerColumn.
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.
Where and how would I add that?
Do I do this all in my template css, or is there somewhere else I need to add this to?
Actually, you'll need to edit the tpl_index_default.php file in the includes/templates/stainless steel/templates directory. If it's not there, copy it over from the template_default directory.should be changed to<div class="centerColumn" id="indexDefault">
<h1 id="indexDefaultHeading"><?php echo HEADING_TITLE; ?></h1>
<?php if (SHOW_CUSTOMER_GREETING == 1) { ?>
<h2 class="greeting"><?php echo zen_customer_greeting(); ?></h2>
<?php } ?>Then, look for<div class="centerColumn" id="indexDefault">
<div id="centerColumnHeader></div>
<h1 id="indexDefaultHeading"><?php echo HEADING_TITLE; ?></h1>
<?php if (SHOW_CUSTOMER_GREETING == 1) { ?>
<h2 class="greeting"><?php echo zen_customer_greeting(); ?></h2>
<?php } ?>and replace with<?php
$show_display_category->MoveNext();
} // !EOF
?>
</div>Once that's done, you can add the two calls to the stylesheet and add images, set height, etc.<?php
$show_display_category->MoveNext();
} // !EOF
?>
<div id="centerColumnFooter"></div>
</div>
BTW, it's not a good idea to use a file or folder name with a space in it. Your custom directory should be renamed to stainless_steel to prevent problems in the future.
Also, the validators are going crazy with all the "&H" throughout your site. You need to find all the &Hs and replace them with "&H". Same thing in your keywords and description.
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.
I've made the two changes to the tpl_index_default.php file and tried adding it to the css for the footer. Still, nothing shows up. I even tried just using a background color just to see if it would show up. Nothing.
What am I doing wrong?
Thank you for point out the file name and about the &. I made the changes to take care of those issues.