Results 1 to 10 of 19

Hybrid View

  1. #1
    Join Date
    Aug 2006
    Posts
    109
    Plugin Contributions
    0

    Default Re: Border Help Please

    ok I just figured that out but it doesnt go all the way to the top

    http://jenniejdesigns.com/index.php?main_page=index


  2. #2
    Join Date
    Jan 2005
    Location
    Lake Havasu, AZ
    Posts
    1,149
    Plugin Contributions
    0

    Default Re: Border Help Please

    That's because of the Breadcrumb -

    One more shot... did you change #navColumnOne or #navColumnOneWrapper ?

    One of those should do it for sure - they are the left box containers.
    When the world gets in my face I say Have A Nice Day.
    * I DO Think and I HAVE BEEN Zenned - therefore, I AM * I donate - do you?
    Custom Templates and Zen Services CRS Designs, Inc.

  3. #3
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,684
    Plugin Contributions
    11

    Default Re: Border Help Please

    I think what you are looking for is to remove the border for the center column border and find
    #navColumnOne {
    padding: 0.5em;
    border-left: 0px solid #cccccc;
    }
    Replace it with
    #navColumnOne {
    padding: 0.5em;
    border-right: 2px solid #000000;
    }
    You can adjust the pixels to suit your needs.
    Nothing will go all the way to the pink line as there is a space built in to the logo.gif but, this gets you close.
    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.

  4. #4
    Join Date
    Aug 2006
    Posts
    109
    Plugin Contributions
    0

    Default Re: Border Help Please

    Thanks yall I think I got it

    this look ok
    http://jenniejdesigns.com/index.php?main_page=index

    also how do I make my main page content more centered I have tried everything and searched but cant find it I did it once but forgot how

    thanks so much for all your help

    Avie

  5. #5
    Join Date
    Jan 2005
    Location
    Lake Havasu, AZ
    Posts
    1,149
    Plugin Contributions
    0

    Default Re: Border Help Please

    Do you have your right sidebar turned off globally in admin/ configuration / layout settings?

    Many times that is why center content doesn't appear centered :)

    The border looks fantastic
    When the world gets in my face I say Have A Nice Day.
    * I DO Think and I HAVE BEEN Zenned - therefore, I AM * I donate - do you?
    Custom Templates and Zen Services CRS Designs, Inc.

  6. #6
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,684
    Plugin Contributions
    11

    Default Re: Border Help Please

    add this to the stylesheet
    .centerColumn {
    text-align: center;
    }
    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.

  7. #7
    Join Date
    Aug 2006
    Posts
    109
    Plugin Contributions
    0

    Default Re: Border Help Please

    yep I have the right column shut off maybe its my graphic lol.
    thanks so much for all your help

  8. #8
    Join Date
    Aug 2006
    Posts
    109
    Plugin Contributions
    0

    Default Re: Border Help Please

    AHHH HAA thanks that made it centered woohooo
    lol

    thanks so much again

  9. #9
    Join Date
    Aug 2006
    Posts
    109
    Plugin Contributions
    0

    Default Re: Border Help Please

    ok can someone help me with why my border is doing this???
    I moved my login/ home below my logo.gif and I then lost my border for my whole page this is the code I used.

    <table border="0" width="100%" cellspacing="0" cellpadding="0" class="header">
    <tr><!-- All HEADER_ definitions in the columns below are defined in includes/languages/english.php //-->
    <td valign="middle" height="<?php echo HEADER_LOGO_HEIGHT; ?>" width="<?php echo HEADER_LOGO_WIDTH; ?>">
    <?php echo '<a href="' . zen_href_link(FILENAME_DEFAULT) . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '</a>'; ?>
    </td>
    <td align="center" valign="top">
    <?php
    if (HEADER_SALES_TEXT != '') {
    echo HEADER_SALES_TEXT;
    }
    if (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2)) {
    if ($banner->RecordCount() > 0) {
    echo zen_display_banner('static', $banner);
    }
    }
    ?>
    </td>
    </tr>
    </table><table class="centershop" style="border-left: 2px dotted #000000" style="border-right: 2px dotted #000000" style="border-bottom: 2px dotted #000000" cellspacing="0" cellpadding="0" bgcolor="#ffffff">
    <?php
    if (!isset($flag_disable_header) || $flag_disable_header == false) {
    ?>
    <tr><td>
    <table width="100%" border="0" cellspacing="0" cellpadding="0" class="headerNavigation">
    <tr>
    <td align="left" valign="top" width="35%" class="headerNavigation">
    <a href="<?php echo zen_href_link(FILENAME_DEFAULT, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CATALOG; ?></a>&nbsp;|&nbsp;
    <?php if (isset($_SESSION['customer_id'])) { ?>
    <a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a>&nbsp;|&nbsp;
    <a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a>
    <?php
    } else {
    if (STORE_STATUS == '0') {
    ?>
    <a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a>
    <?php } } ?>
    </td>
    <td align="center" width="30%" class="headerNavigation"><?php require(DIR_WS_MODULES . 'sideboxes/' . 'search_header.php'); ?></td>
    <td align="right" valign="top" width="35%" class="headerNavigation">
    <?php if ($_SESSION['cart']->count_contents() != 0) { ?>
    <a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a>&nbsp;|&nbsp;<a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?>&raquo;</a>
    <?php }?>
    </td>
    </tr>
    </table>
    but when I go to put the border around the header it throws it all off this is what it looks like

    http://jenniejdesigns.com/index.php?main_page=index

    what am I not doing right?

 

 

Similar Threads

  1. dropshadow around border?? Please help
    By rickiesdiscount in forum Templates, Stylesheets, Page Layout
    Replies: 11
    Last Post: 13 Apr 2009, 09:08 PM
  2. How do I put border on some images and no border on others?
    By Sawhorse in forum Templates, Stylesheets, Page Layout
    Replies: 20
    Last Post: 6 Apr 2009, 01:18 AM
  3. Help Please! Border showing around text on product page
    By jaylyns in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 24 Apr 2008, 02:07 PM
  4. Part Of The Border Missing, But Why? Help Please
    By DPM in forum Templates, Stylesheets, Page Layout
    Replies: 7
    Last Post: 3 Apr 2008, 12:45 PM
  5. please help me removing a border or is it a line?
    By dijk777 in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 13 May 2006, 03:10 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg