Jump to content

roban

Member
  • Posts

    3,238
  • Joined

  • Last visited

Everything posted by roban

  1. In your host control panel/phpMyAdmin, open your database and choose export as a sql file.
  2. Try adding the code through the Source function in fckeditor
  3. There is a full screen Legend skin for about $1.00. Contact Markscarts
  4. There are skins available at www.cubecart.org
  5. Your site takes too long to load even on a cable connection. It's too wide and this is in your header: img { background: url(http://www.parfumerie.nl/images/parfumerie_03.jpg) no-repeat 50% 50%; }
  6. language/your language/lang.inc. Search within the files for Home
  7. Read the pinned posts in the skins section or click on the link in my sig.
  8. roban

    New Design

    I would expect something that clean from Mark. Nicely done. It reminds me of a CMS layout.
  9. It's controversial as to whether robots.txt is even of any value. Only a few robots support it. Using it cannot hurt.
  10. Have you got an .htaccess file in the directory?
  11. While you're sleeping how about giving us some more information. You're not getting any feedback because there is nothing for us to grab on to. Things like that don't just happen. You've got a path problem or you've installed a mod that has messed things up for you.
  12. This is not a design forum. Please post this at cubecart.org
  13. Why would you call them? If you are looking to edit the products in your Latest Products box there is a mod to do this at cubecart.org. If you simply want to add product images and descriptions in your home page box you can do it by creating a table with as many columns and rows as necessary and add your images and descriptions. Other than that I know of no way to 'call' the products. Perhaps someone else would know.
  14. Hi Ron and welcome to Cube Cart. This forum is not a design forum but rather a support forum for the cart. We have set up a site at www.cubecart.org to deal with 3rd party mods and design issues. Please post requests of this nature there.
  15. Is there a reason not to do that through your homepage editor?
  16. In layout.css: #subCats { background-color: #EBEDFE; text-align: center; border: 1px solid #C9CEFC; margin: 0px; padding: 3px; float: left; width: 387px; } .subCat { text-align: center; padding: 8px; float: left; width: 110px; Remove float: left; That should do it. Also in viewCat.tpl look for this line around line 17 <img src="{IMG_CURENT_CATEGORY}" alt="{TXT_CURENT_CATEGORY}" border="0" title="{TXT_CURENT_CATEGORY}" /> You can try adding align="center"
  17. This can be handled in product options
  18. As much as we'd like to continue to answer the same questions over and over again ad infinitum, I am sure you'll agree it's not the easiest thing in the world to do. I implore you to use the pinned posts at the top of each section and the search function. Almost anything you could possibly ask has been answered many, many times. Although we try to be polite in our responses, it is increasingly difficult to repeat the same answer over and over again. You cooperation in this is much appreciated.
  19. All information you are asking for can be found in the pinned posts
  20. roban

    Subcategories

    This has been covered before although I can't recall when or where. My advice is to do a search making sure to search all forums as far back as possible. Sorry I can't be of more help but perhaps another Moderator can be.
  21. You must change the permissions either with an FTP client or through your hosting control panel. FTP is easier in my experience. You just right click the file and follow directions for CHMOD.
  22. When you say "3 columns" are you referring to the Latest Products? If so, use the following hack: In the includes/content/index.inc.php find this line: for($i=0;$i<count($latestProducts);$i++){ Replace with this code $across=4; $index->assign("TW",100/$across); for($i=0;$i<count($latestProducts);$i++){ if (!(($i+1) % $across)) { $index->assign("TXT_TR","</tr><tr>"); } else { $index->assign("TXT_TR",""); } in skins/{insert skin name}/styleTemplates/content/index.tpl replace all code between <!-- BEGIN: repeat_prods --> and CODE <!-- END: repeat_prods --> including those two lines above with this code CODE <table width="100%" border="0"><tr> <!-- BEGIN: repeat_prods --> <td width="{TW}%"> <div style="float: center; text-align: center;"> <a href="index.php?act=viewProd&productId={VAL_PRODUCT_ID}"><img src="{VAL_IMG_SRC}" alt="{VAL_PRODUCT_NAME}" border="0" /></a> <br /> <a href="index.php?act=viewProd&productId={VAL_PRODUCT_ID}" class="txtDefault">{VAL_PRODUCT_NAME}</a> <br /> {TXT_PRICE} <span class="txtSale">{TXT_SALE_PRICE}</span> </div> </td> {TXT_TR} <!-- END: repeat_prods --> </tr></table> The $across variable is used to specify number products across.
×
×
  • Create New...