Jump to content

roban

Member
  • Posts

    3,238
  • Joined

  • Last visited

Posts posted by roban

  1. What directory is your store in? Root or upload. When you uploaded your files did you upload the upload directory as well or just the files. If you uploaded the directory, then there's your problem. Should have been just the files to your root.

  2. Hi Marina and welcome to Cube Cart. Go to cubecart.org. I think there is a Portuguese language file there. As to your image problem there could be several reasons for this. Make sure your host has GD installed and operating. Can you give us the URL of your site please.

  3. In your home page you have this:

    <p> </p>

    </font></font></font></span>

    <p> </p>

    <p> </p>

    <p> </p>

    </font></font></font></span></p>

    <p> </p>

    <p> </p>

    <p> </p>

    <p> </p>

    <p> </p>

    <p> </p>

    <p> </p>

    <p> </p>

    <p> </p>

    <p> </p>

    <p> </p>

    <p> </p>

    <p> </p>

    <p> </p>

    <p> </p>

    <p> </p>

    <p> </p>

    <p> </p>

    <p> </p>

    <p> </p>

    <p> </p>

    <p> </p>

    <p> </p>

    <p> </p>

    <p> </p>

    <p> </p>

    <p> </p>

    <p> </p>

    Which is giving all that white space before your random products.

    Also I would make the blue text smaller. Your center box is expanding to contain it all.

  4. The tabs are 3 images and can be found in layout.css

    .topCatsTabLeft {

    background-image: url(../styleImages/backgrounds/catTabLeft.gif);

    background-repeat: no-repeat;

    width: 7px;

    }

    .topCatsTabMid {

    background-image: url(../styleImages/backgrounds/catTabMid.gif);

    background-repeat: repeat-x;

    }

    .topCatsTabRight {

    background-image: url(../styleImages/backgrounds/catTabRight.gif);

    width: 7px;

    background-repeat: no-repeat;

    The bar itself is also 3 images:

    .topCats {

    text-align: center;

    background-image: url(../styleImages/backgrounds/catBg.gif);

    height: 42px;

    color: #ffffff;

    margin-bottom: 15px;

    }

    .topCatsBgRight {

    background-image: url(../styleImages/backgrounds/catBgRight.gif);

    background-repeat: no-repeat;

    background-position: right;

    height: 42px;

    }

    .topCatsBgLeft {

    float: left;

    background-image: url(../styleImages/backgrounds/catBgLeft.gif);

    background-repeat: no-repeat;

    background-position: left;

    height: 42px;

    Remove the whole lines background-image: url(../styleImages/backgrounds/.......); in each case to remove the images completely. If you want to just remove the tabs only remove those references. The text is white by default and you can change the color in style.css:

    .txtCat {

    font-family: Verdana, Arial, Helvetica, sans-serif;

    font-size: 11px;

    font-weight: bold;

    color: #FFFFFF;

    text-decoration: none;

    Changing it to #000000 will give you black text. The text will appear without the tabs.

    I believe there is a mod at cubecart.org for moving the categories to a side box.

  5. Here's a very simple side box code:

    <div class="boxTitleRight">Your head-line</div>

    <div class="boxContentLeft">

    Use the code you wish to add

    <border="0" >

    </div>

    <div class="boxFootRight"> </div>

    Put the title you want in place of 'Your head-line' and the code or text or image in place of 'Use the code you wish to add'. Paste this code into your skins/your skin/styleTemplates/global/index.tpl file anywhere you want the box to appear.

×
×
  • Create New...