Jump to content

roban

Member
  • Posts

    3,238
  • Joined

  • Last visited

Everything posted by roban

  1. Opera does not give you Flashget or Google PR or any number of other addons. Until they do I'll stick with FF. Thanks.
  2. This does not belong on this Board IMHO
  3. roban

    Price Font Size

    style.css .txtCartPrice { float: right; color: #FF0000; padding-right: 3px; add: font-size: 12pt; or whatever value you want
  4. It looks to me like the legth of your text is the problem and the tabs are not expanding to accommodate.
  5. roban

    change domains

    Look M8 I gave you the things you have to do on MSN but you want someone to install your cart and get you out of trouble for nothing. So don't go saying nobody has responded to you. <_<
  6. My advice to you. Go back to version 3.02 and do not install shipping mods. My two 3.02 carts work just fine. When a new version comes out of any software the wise wait and see what happens instead of rushing ahead with an upgrade, especially if the predecessor did not function properly. Cube Cart works with a little tweaking here and there and most of the problems I have seen on this board stem from the fact that people are willing to change code without considering the consequences. Not that this was your problem, but when money is on the line it pays to be cautious. The most stable version of Cube Cart is 2.07. Shipping has always been a problem with version 3 and it's going to be a while before it gets sorted out.
  7. You'll need an ftp client for this. What you need to do is logon to your account by ftp, find the file you want, right click on the file and in the window that opens choose 'attributes (CHMOD). Now a box will open with some choices and check boxes. Each check box is worth a value. When you put a check in a box, the value (permission) for the file changes and you can see the numeric change as you check boxes. The numeric value you're looking for is 0777. PM me if you need more help on this. Ooops I EverythingWeb and I posted at the same time.
  8. In admin/General Settings/Include Tax Turn this to 'Off' the switch is backwards. 'On' is 'Off' and visa versa
  9. roban

    IE Question

    Tools/Internet Options/General Tab/Fonts is the only control I know of. The control I use is Fire Fox and to hell with IE.
  10. I don't know if this is what you want but: skins\your skin\styleTemplates\boxes\categories.tpl <!-- BEGIN: categories --> <div class="topCats"> <div class="topCatsBgRight"> <span class="topCatsBgLeft">&nbsp;</span> <table border="0" cellspacing="0" align="center" cellpadding="0"> <tr> <td class="topCatsTabLeft">&nbsp;</td> <td class="topCatsTabMid"><a href="http://www.yoursite url" class="txtCat">Home</a></td> <td class="topCatsTabRight">&nbsp;</td> <!-- BEGIN: li --> <td class="topCatsTabLeft">&nbsp;</td> <td class="topCatsTabMid"><a href="index.php?act=viewCat&amp;catId={DATA.cat_id}" class="txtCat">{DATA.cat_name}</a></td> <td class="topCatsTabRight">&nbsp;</td> <!-- END: li --> <!-- BEGIN: sale --> <td class="topCatsTabLeft">&nbsp;</td> <td class="topCatsTabMid"><a href="index.php?act=viewCat&amp;catId=saleItems" class="txtCat">{LANG_SALE_ITEMS}</a></td> <td class="topCatsTabRight">&nbsp;</td> <!-- END: sale --> </tr> </table> </div> </div> <!-- END: categories --> This will make your Home Page button http://www.yoursite url instead of http://www.yoursite url.index.php
  11. Use an FTP client and CHMOD the file. If you don't know how to do this PM me.
  12. Yes it is possible by editing certain files. There are 2 ways to go about this. 1. use the Search function on this site for specific questions 2. hire one of the members who design What you want to do is too involved to answer in one post.
  13. There are mods that are free to add boxes and also copies of CC versions free for the download in the Downloads Section. Yes you can add a counter and why did you add a </div> after the header. You should be editing and uploading by FTP not editing in Fantastico. How do you edit there anyway? The things you are asking are not easy to explain and come close to site design. Since this is something I get paid for, I cannot take too much time to go through all of this in posts. I hope you understand.
  14. You're saying you can't check all and Browse? I can.
  15. You can add your style to your style.css. Try just adding your code including your style between the last </div> and </body>
  16. Are you talking about searchform.tpl? You can upload it from your original CC zip file: skins\your skin\styleTemplates\boxes\searchForm.tpl
  17. Go to your skin/styleTemplates/global/index.tpl and cut/paste the following to anywhere you want it: <div id="sessionBox"> <div style="padding: 0px 5px 0px 5px; margin: 0px;"> {SESSION} You can put it on top of the right hand column like I did on my teeshirt site. Here's my code. This is for Killer skin: Play with it but make a backup of your original first in case you get into trouble. <!-- BEGIN: body --> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>{META_TITLE}</title> <meta http-equiv="Content-Type" content="text/html; charset={VAL_ISO}" /> <meta name="description" content="{META_DESC}" /> <meta name="keywords" content="{META_KEYWORDS}" /> <link href="skins/{VAL_SKIN}/styleSheets/layout.css" rel="stylesheet" type="text/css" /> <link href="skins/{VAL_SKIN}/styleSheets/style.css" rel="stylesheet" type="text/css" /> <script language="javascript" src="js/jslibrary.js" type="text/javascript"></script> </head> <body> <div id="pageSurround"> <div id="topHeader"> <div align="left"><td align='left' height="80" width="100%"><a href="http://www.teeshirtmart.com/"> <img src="http://www.teeshirtmart.com/skins/Killer/styleImages/backgrounds/topHeader.gif" alt="teeshirtmart.logo" border="0"></a></td> </div> </div> </div> <div id="subSurround"> {CATEGORIES} <table border="0" cellspacing="0" width="100%" cellpadding="0"> <tr valign="top"> <td width="175"> {SHOPPING_CART} <div id="searchbox"> {SEARCH_FORM} </div> <br /> <div class="boxTitleRight">Your Ad Here</div> <div class="boxContentLeft"> <a href="mailto:[email protected]">Contact Us for Details</a> </div> <div class="boxFootRight">&nbsp;</div> {LANGUAGE} </td> <td style="padding: 0px 5px 0px 5px;">{PAGE_CONTENT}</td> <td width="175"><background="FFFFFF"> <div id="sessionBox"> <div style="padding: 0px 5px 0px 5px; margin: 0px;"> {SESSION} <br> {RANDOM_PROD} {POPULAR_PRODUCTS} {SALE_ITEMS} </td> </tr> </table> <br><br> </div> {SITE_DOCS} </div> <font size="-1"><div align="center">Web Master<a href="http://www.roban.net"> Computer Services of East Hampton</a><br> copyright© 2005 TeeShirtMartâ„¢ All rights reserved.<br> Powered by <a href="http://www.cubecart.com" class="txtCopyright" target="_blank">CubeCart</a></font> </div> </body> ttp://cqcounter.com/">Hit Counter</a></noscript> <!-- CQ Counter code end --> </html> <!-- END: body -->
  18. Sunshine, you're in trouble adding your style. If you just add your footer between the last </div> and </body> tags you'll be ok. Here's my index.tpl for one of my sites. It's Killer skin but it should be the same: <!-- BEGIN: body --> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>{META_TITLE}</title> <meta http-equiv="Content-Type" content="text/html; charset={VAL_ISO}" /> <meta name="description" content="{META_DESC}" /> <meta name="keywords" content="{META_KEYWORDS}" /> <link href="skins/{VAL_SKIN}/styleSheets/layout.css" rel="stylesheet" type="text/css" /> <link href="skins/{VAL_SKIN}/styleSheets/style.css" rel="stylesheet" type="text/css" /> <script language="javascript" src="js/jslibrary.js" type="text/javascript"></script> </head> <body> <div id="pageSurround"> <div id="topHeader"> <div id="sessionBox"> <div style="padding:0px 5px 0px 5px; margin: 0px;"> <font color="blue">call toll free 1-877-843-2609</font> {SESSION} </div> </div> </div> <div id="subSurround"></div> {CATEGORIES} <table border="0" cellspacing="2" width="100%" cellpadding="2"> <tr valign="top"> <td width="175"> {SHOPPING_CART} <div id="searchbox"> {SEARCH_FORM} </div> <br> {SALE_ITEMS} <div class="boxTitleLeft">Free Multi Vitamins</div> <div class="boxContentLeft"><div align="center"> <font color=#36648B><font size="2">Pay only shipping $3.49</font> <img src="http://www.vitaminlink.net/Vita-Super1.jpg" width="145" height="155" border="0" alt="free vitamins" > <font color= blue><a href="http://www.vitaminlink.net/index.php?act=viewProd&productId=79">Learn More</font></a> </div> <div class="boxFootLeft">&nbsp;</div> <div class="boxTitleLeft">Guarantee</div> <div class="boxContentLeft"><div align="center"> <font color=#36648B><font size="2">Our Guarantee To You <img src="http://www.vitaminlink.net/guarantee.jpeg" alt="guarantee"> <font color= blue><a href="http://www.vitaminlink.net/index.php?act=viewDoc&docId=9"> Here</font></a> </div> <div class="boxFootLeft">&nbsp;</div> <table border=0 cellspacing=0 cellpadding=0> <tr><td> <a href="http://bidhopper.com" target="blank"> <img src="http://bidhopper.com/images/mybidhopper.gif" border=1> </a> </td></tr> </table> </td> <td style="padding: 0px 5px 0px 5px;">{PAGE_CONTENT}</td> <td width="175"> {RANDOM_PROD} {POPULAR_PRODUCTS} <div class="boxTitleLeft">Customer Testimonials</div> <div class="boxContentLeft"><div align="left"> <font color= #36648B><font size="-2"><font class="txtDefault">Your service was terrific and I never go anywhere without my Life's Essentials nor have I ever felt better.<br><i>ML, Boston, MA</i><br></font><br><font color= #36648B><font size="-2"><font class="txtDefault">Thanks for the help in ordering. I tried other brands until I found yours. Your Saw Palmetto will always be on my shelf.<br><i>Casey, Arlington, VA<br></i></font><br><font color= #36648B><font size="-2"><font class="txtDefault">I got my free Vita Super today. That was fast! Thanks for the quick delivery...<br><i>SB, New York, NY</i></font> </div> <div class="boxFootLeft">&nbsp;</div> <div class="boxTitleLeft">Health and Nutrition</div> <div class="boxContentLeft"><div align="center"> <font color="#36648B"><font class="txtDefault"><Font size="-2">Helpful and informative pages on health and nutrition to help you make a more informed choice.<a href="http://www.vitaminlink.net/index.php?act=viewDoc&docId=10"><br>Read More</a></font> </div> <div class="boxFootLeft">&nbsp;</div> <div class="boxTitleLeft">Catalog Request</div> <div class="boxContentLeft"><div align="center"> <img src="http://www.vitaminlink.net/catalog.jpg" alt="catalog"> <font color="#36648B"><font class="txtDefault"><Font size="-2">You’ll find health tips and more information on our product line. <a href="http://www.vitaminlink.net/requestcatalog.php"><br> Click here!</a></font> </div> <div class="boxFootLeft">&nbsp;</div> <div class="boxTitleLeft">Secure Ordering</div> <div class="boxContentLeft"><div align="center"> <img src="http://www.vitaminlink.net/quickssl_anim.gif" alt="geotrust seal" width="91" height="50" align="center"> </div> <div class="boxFootLeft">&nbsp;</div> </td> </tr> </table> </div> {SITE_DOCS} </div> <font size="-1"><div align="center">Web Master<a href="http://www.roban.net"> Computer Services of East Hampton</a></font></div> <font size="-2"><div align="center">These statements have not been evaluated by the FDA. Products on this web site are not intended to diagnose, treat, cure, or prevent any diseases.<br>Powered by <a href="http://www.cubecart.com" class="txtCopyright" target="_blank">CubeCart</a></font></div> </body> </html> <!-- END: body -->
  19. I don't know if this was fixed in 3.03 but it was still an issue in 3.02. If tax is not being added, it's because the switch for turning tax 'on' is backwards. In your admin /General Settings scroll down to Include Tax in Prices. Set this to 'No' and tax will be activated. Like I said, the switch was backwards.
  20. I don't know if this was fixed in 3.03 but it was still an issue in 3.02. If tax is not being added, it's because the switch for turning tax 'on' is backwards. In your admin cpl/General Settings scroll down to Include Tax in Prices. Set this to 'No' and tax will be activated. Like I said, the switch was backwards.
×
×
  • Create New...