Results 1 to 4 of 4

Hybrid View

  1. #1
    Join Date
    Aug 2005
    Posts
    30
    Plugin Contributions
    0

    application error blank sidebox border?

    hello, all :) I'm having some trouble with my sideboxes. I've installed a blank sidebox, that i intend on eventually being the only sidebox (in other words, the 'information' sidebox that currently shows on my page will be disabled later)...

    I'm having difficulty figuring out how to remove the bottom green border and the other gray borders from my sidebox. i've looked at several threads already, and tried about 7 different things and nothing is working. Ive looked all through "includes/templates/MYTEMPLATE/css/stylesheet.css" and sometimes i couldnt even find what CSS other threads were referencing to. is there another css file i should be editing?

    http://www.sugar-skull.com/shop/

    i was able to remove the blank sidebox header already.

    also, i would like to eliminate some of the white space below the header (above the content)... i'm guessing that came from disabling the breadcrumbs? how can i move my content up closer to the header?

  2. #2
    Join Date
    Apr 2006
    Posts
    265
    Plugin Contributions
    0

    Default Re: blank sidebox border?

    includes/templates/classic/css/stylesheet.css

    line 551:
    Code:
    .leftBoxContainer, .rightBoxContainer {
    	margin: 0em;
    	border: 1px solid #9a9a9a;
    	border-bottom: 5px solid #336633;
    	margin-top: 1.5em;
    	}
    Remove both 'border' lines.


    The space at the top is actually this:
    Code:
    <br class="clearBoth" />
    I believe that's in /includes/templates/classic/common/tpl_header.php. It's the one inside the "branding display" comments.


    I recommend using FireFox with the Web Developer Toolbar. You just select "View Style Information" then click on whatever element on the page you're working with it. It immediately shows you all of the CSS in all of the stylesheets that's being applied to that element. Took me only a few seconds to find the line in the stylesheet that was causing the borders by clicking on them...

    I like your site so far. Look forward to seeing it when it's finished.

    BrandTim

  3. #3
    Join Date
    Aug 2005
    Posts
    30
    Plugin Contributions
    0

    Default Re: blank sidebox border?

    ah, thanks! that worked well.

    now, the only thing i cant figure out how to do is get rid of that white header on the blank sidebox. i tried looking in the css, but even if i just change the color, there will still be a space there. i'd rather just get rid of it all together.

    also, i think when you add an item to your cart, keep shopping, and then click 'shopping cart', it doesnt register the item. hrmm. :/

  4. #4
    Join Date
    Apr 2006
    Posts
    265
    Plugin Contributions
    0

    Default Re: blank sidebox border?

    Which sidebox is the blank sidebox? They all appear to have content to me...

    The shopping cart problem is due to a misconfigured link.

    In the HTML code you have this:
    Code:
    <a href="http://sugar-skull.com/shop/index.php?main_page=shopping_cart"><img src="http://sugar-skull.com/shop/images/cart.jpg" border="0"></a><br>
    Note the lack of 'www'.

    in the PHP source you should have this:
    Code:
    <a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><img src="http://www.sugar-skull.com/shop/images/cart.jpg" border="0"></a><br>
    BrandTim

 

 

Similar Threads

  1. v150 Blank Sidebox Blank Page after adding code for livechat software
    By whatisthat456 in forum Basic Configuration
    Replies: 8
    Last Post: 3 May 2012, 10:40 AM
  2. Flash hack&blank sidebox = blank page
    By AmandaGero in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 20 Apr 2009, 06:19 PM
  3. Sidebox Header Size and Sidebox border
    By shaunb in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 21 Oct 2008, 03:25 AM
  4. Blank Sidebox Mod - remove a blank sidebox
    By PJD in forum Basic Configuration
    Replies: 4
    Last Post: 14 Mar 2008, 02:09 PM
  5. Border in Firefox & Sidebox border missing
    By helpme in forum Basic Configuration
    Replies: 3
    Last Post: 17 Oct 2007, 04:18 AM

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