I've tried that without success (before posting). I tried it again just in case I'm going insane.... and doesn't work (take a look).![]()
I've tried that without success (before posting). I tried it again just in case I'm going insane.... and doesn't work (take a look).![]()
IDEAS Girl
IDEAS Creative Group = Your image... our business!
Having a time with your css organization....
You must have moved in the code some things???
but try this and adjust for conformance as I could not find mainWrapper to get what you have set
Code:#siteinfoLegal, .legalCopyright { margin: auto; width: 750px; background-color: #4F3713; font-size:10px; text-align: center; padding: 3px; color: #D6A074; } #navSupp { margin: auto; width: 750px; background-image: url('../images/footer.jpg'); background-repeat: no-repeat; color: #606060; font-size: 8px; padding-top: 6px; height: 30px; }
Zen-Venom Get Bitten
Yes, I did... but remember that this is a liquid design.You must have moved in the code some things???
but try this and adjust for conformance as I could not find mainWrapper to get what you have set
-----edited to add----
Ok... thanks... this is what I did with your help:
#navSupp {
background-image: url('../images/footer.jpg');
background-repeat: no-repeat;
margin: auto;
width: 780px;
color: #606060;
font-size: 8px;
padding-top: 6px;
height: 30px;
}
Last edited by ideasgirl; 17 Aug 2007 at 02:04 AM.
IDEAS Girl
IDEAS Creative Group = Your image... our business!
As I stated I could not locate your setting for this...Yes, I did... but remember that this is a liquid design.
Make the width % as it is the margin auto that aligned this as centered
Zen-Venom Get Bitten
If I put % it will bring it to the left.![]()
IDEAS Girl
IDEAS Creative Group = Your image... our business!
This template is just great we are using zen-cart as our store. have been waiting for a template like it blends in perfect with the rest of our website ,only did background color changes and that's it . great work thank you.we just started getting some sales. soon as we have a little money we will be donating to zen and you for this work.
http://shoppingbasics.com
ideasgirl,
Only if you set this to 100% as your background image is a static 780px in width with no repeat that would be necessarty for fluidity. You can try making a tile for this and repeat-x it or try setting this to 78% and see what it looks like.If I put % it will bring it to the left.
Zen-Venom Get Bitten
Hello Jettrue,
I have put the request restock. I tried putting everywhere, and it does the same. I have added wishlist, and social bookmarking, but they are ok. This is the code I have added:-
<!--bof Restock button-->
<?php
if ($products_quantity <= 0) { ?>
<?php echo '<a href="' . zen_href_link(FILENAME_REQUEST_RESTOCK, 'products_id=' . $_GET['products_id']) . '">' . zen_image_button(BUTTON_IMAGE_REQUEST_RESTOCK, BUTTON_REQUEST_RESTOCK_ALT) . BUTTON_REQUEST_RESTOCK_ALT . '</a>'; ?></div>
<?php
}
?>
<!--eof Restock button -->
Basically, I was using Future Zen template, and I have copied all the sidebox and template files over to cherry zen. So when I switch to Future Zen, the sidebox thing doesn't occur. I was careful in only copying the css files that were extra, and otherwise, didn't overwrite any of the Cherry Zen file. Only altered the file to use lightbox for image enlargements.
Regards,
Heathenmagic![]()
Yeah, the problem is the restock mod. See how it has a closing </div> but no starting div. Change that section to this:
<!--bof Restock button-->
<?php
if ($products_quantity <= 0) { ?>
<?php echo '<div id="requestRestock"><a href="' . zen_href_link(FILENAME_REQUEST_RESTOCK, 'products_id=' . $_GET['products_id']) . '">' . zen_image_button(BUTTON_IMAGE_REQUEST_RESTOCK, BUTTON_REQUEST_RESTOCK_ALT) . BUTTON_REQUEST_RESTOCK_ALT . '</a>'; ?></div>
<?php
}
?>
<!--eof Restock button -->
Then you can add this to your css to get it over to the left:
#requestRestock {float:left;}
Heathenmagic
If I may offer a few suggestions for your template.
Open up includes/templates/YOUR_TEMPLATE/templates/tpl_product_info_display.php and add a
<br class="clearBoth" />
right before:
<?php echo $options_attributes_image[$i]; ?>
Then in "configuration", "Images" change the additional images per row to 2.
Then in your css, change:
.attribImg {
width:20%;
margin:0.3em 0;
}
to
.attribImg {
width:48%;
margin:0.3em 0;
}
Also, in Firefox, a lot of your product descriptions are HUMONGOUS. Just wanted to let you know in case it looks different in your browser. If you meant for them to be that big sorry, LOL. But the #productDescription will need more padding and bigger line-height if so.
The product listing page issue is my fault, LOL, an error with my mod. I swore I had uploaded the fix, but I guess not!
open up includes/templates/YOUR_TEMPLATE/templates/tpl_index_product_list.php and change:
to this:Code:echo '<a id="descSubLink" href="' . zen_href_link(FILENAME_DEFAULT, 'cPath=' . $cPath) . '#descSub" >' . CATEGORIES_SUB_TEXT . '</a>';
Do the exact same thing in includes/templates/YOUR_TEMPLATE/templates/tpl_index_index_categories.phpCode:echo '<a id="descSubLink" href="' . zen_href_link(FILENAME_DEFAULT, 'cPath=' . $cPath) . '#descSub" >' . CATEGORIES_SUB_TEXT . '</a></div>';
Bookmarks