Results 1 to 10 of 12

Hybrid View

  1. #1
    Join Date
    Sep 2008
    Location
    California
    Posts
    10
    Plugin Contributions
    0

    Default Re: Extending Logo into Sidebox

    Quote Originally Posted by kobra View Post
    Can do alot with the css for this...

    Try removing the current navMainWrapper entry and making it it's own entry with the following:
    Sorry, I should have mentioned that I liked how the navigation bar went behind the logo and that's how I wanted it to show up in IE as well.

    I'm just trying to figure out if there is a fix for getting an image to overlap a division in IE (I'm checking it using IE 6) or if I'll have to cut the logo in two and call half from the header and half from the left column/sidebox.

    I'd prefer if the image could overlap so that I can make minor layout changes to the page without having to cut the logo in two every time. If I can't, then I'll wait until I have everything else with the page set up how I want and edit the logo once.

    Thanks for all the help & suggestions.

  2. #2
    Join Date
    Sep 2008
    Location
    California
    Posts
    10
    Plugin Contributions
    0

    Default Re: Extending Logo into Sidebox

    Well, I have come to the conclusion that I hate IE.

    If I use the position: absolute, I can get things to look right but if I change the resolution or modify the size of the IE window, things quickly start to go wrong.

    If I use the position: relative, IE doesn't allow the image to cross across divisions.

    If I try to cut the image into pieces and call them from the different divisions, IE looks like it tosses in a 1 pixel line along the division boundary which ruins the image.



    Any suggestions? The only thing I can think of is to take a 'print screen' snapshot of the page perfectly set up, cut out the section from the bottom of my logo up and turn it into my background (minus the text of course). The only thing stopping me right now is that it would be a pretty sloppy solution (IMO).

  3. #3
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: Extending Logo into Sidebox

    There is in the downloads section an IE only stylesheet module that you might find helpful authored by kuroi...

  4. #4
    Join Date
    Sep 2008
    Location
    California
    Posts
    10
    Plugin Contributions
    0

    Default Re: Extending Logo into Sidebox

    Update:

    The problem with crossing division boundaries seems limited to IE 6. Firfox & IE 7 handle it just fine so I decided, for now, to edit the tpl_header so that if someone shows up browsing in IE 6, the logo will not be called. Eventually (next couple days) I'll make a smaller logo that won't cross the division just for IE 6. There will be a gap above the categories listing that won't be there in Firefox/IE 7 but oh well.

    Code in tpl_header.php looks like this:

    <?php
    if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 6.0') == FALSE) {
    ?>

    <div id="logo"><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '</a>'; ?></div>


    <?php
    }
    ?>
    Using PHP, if HTTP_USER_AGENT (a string that describes what the requesting user is using as a browser) does not have MSIE 6.0 in the string, I'll display the logo. If the string does contain 'MSIE 6.0', the code that calls the logo gets skipped.

    After I make the smaller logo, I'll toss in an ELSE statement that calls the smaller logo up for IE 6 users.

 

 

Similar Threads

  1. v151 I want to add my SSL logo into a sidebox
    By 82dewey in forum General Questions
    Replies: 2
    Last Post: 23 Jun 2013, 05:34 PM
  2. v151 Scam advisor logo and link into sidebox
    By Phil Lomas in forum Templates, Stylesheets, Page Layout
    Replies: 9
    Last Post: 17 May 2013, 06:31 PM
  3. logo integrated into header bar
    By rogisf2000 in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 7 Nov 2008, 08:27 PM
  4. How to create a blank extending sidebox ?
    By Travis Clark in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 6 Jun 2008, 02:27 AM
  5. Center Logo In sidebox, trust logo ?
    By [email protected] in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 27 Feb 2007, 05:35 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