Page 16 of 24 FirstFirst ... 61415161718 ... LastLast
Results 151 to 160 of 233
  1. #151
    Join Date
    Jul 2012
    Posts
    58
    Plugin Contributions
    0

    Default Re: Abbiamo Supremo Support Thread

    Quote Originally Posted by mydogisfat View Post
    Hey Brandon... I'm trying to follow this thread to see maybe if there is a something I can work with but I'm having difficulty deciphering the inputs :)

    Any luck in the stylesheet changes that affect Explorer? I'm ready to publish the site (owner LOVES the look!) but want it to be seen perfectly by the masses!

    Thanks again for all your help,
    Paula

    everything is in the css style sheet, if your struggling with inputs, the start of the css code is a referance to the div tag in the html.

    ive managed find out what controls what simply by using firefox web devoloper tools and editing the css live so i can see what changes what hope this helps :)

  2. #152
    Join Date
    Jun 2012
    Location
    Winter Springs, FL
    Posts
    17
    Plugin Contributions
    0

    Default Re: Abbiamo Supremo Support Thread

    My site is ready to go except for my messing with something in the stylesheet that changed the look in IE. Brandon is so kind to take a look see and find where the explorer issues are located in my file. Everything looks so darn great in Chrome, Firefox, etc that I don't really want to chance any more changes without his expert opinion!

    Thanks, Andy, for your suggestions though!

    www.gefw.co (please view in chrome or firefox or on your ipad!)
    Paula

  3. #153
    Join Date
    Jul 2012
    Posts
    58
    Plugin Contributions
    0

    Default Re: Abbiamo Supremo Support Thread

    Quote Originally Posted by mydogisfat View Post
    My site is ready to go except for my messing with something in the stylesheet that changed the look in IE. Brandon is so kind to take a look see and find where the explorer issues are located in my file. Everything looks so darn great in Chrome, Firefox, etc that I don't really want to chance any more changes without his expert opinion!

    Thanks, Andy, for your suggestions though!

    www.gefw.co (please view in chrome or firefox or on your ipad!)
    Paula

    Wow i see what you mean, everything is so big in IE, also u got the same compatability problem i have..wierd.
    best thing i can suggest for ur menu bar is replacing the gradient with an actual image. this make's it look the same in all browsers. as IE dont show gradients. this is why ive modded mine quite a bit :)

  4. #154
    Join Date
    Dec 2008
    Location
    Utah, USA
    Posts
    182
    Plugin Contributions
    10

    Default Re: Abbiamo Supremo Support Thread

    Quote Originally Posted by PeazzAndycresswell View Post
    ok so i dont know if other poeople are getting this when they are logging into facebook and liking my page...i have an extra link for my bar as im page admin so it might just be mate, can anyone log my site www.consolecodeslab.com and like the fb page after that see if the header 'drops' and sets in on page refresh.

    its happening to me and everytime throws my flyout out of position
    That only happens if you are the admin of the site that is linked. It shows extra rows in the facebook section for the admin of the page. But everyone else will see it normally as they do not have admin access to your facebook site but the regular template does not throw anything off, just pushes it down a row.
    Zen Cart Help and Design

    If you don’t build your dream, someone else will hire you to help them build theirs.

  5. #155
    Join Date
    Dec 2008
    Location
    Utah, USA
    Posts
    182
    Plugin Contributions
    10

    Default Re: Abbiamo Supremo Support Thread

    Quote Originally Posted by mydogisfat View Post
    My site is ready to go except for my messing with something in the stylesheet that changed the look in IE. Brandon is so kind to take a look see and find where the explorer issues are located in my file. Everything looks so darn great in Chrome, Firefox, etc that I don't really want to chance any more changes without his expert opinion!

    Thanks, Andy, for your suggestions though!

    www.gefw.co (please view in chrome or firefox or on your ipad!)
    Paula
    I spent some time the other day and am not sure why it is doing that as its not like that with a unedited version of the template. There have been some changes made either to the tpl_header.php or the stylesheet.

    If you can copy your tpl_header.php code (or send it to me) I will create a fresh install with your header and css files and figure it out for sure. But I could not detect it from just the stylesheet.
    Zen Cart Help and Design

    If you don’t build your dream, someone else will hire you to help them build theirs.

  6. #156
    Join Date
    Jun 2012
    Location
    Winter Springs, FL
    Posts
    17
    Plugin Contributions
    0

    Default Re: Abbiamo Supremo Support Thread

    Brandon, here's the tpl_header.php
    Keeping my fingers crossed!!

    Code:
    <?php
    /**
     * Common Template - tpl_header.php
     *
     * this file can be copied to /templates/your_template_dir/pagename<br />
     * example: to override the privacy page<br />
     * make a directory /templates/my_template/privacy<br />
     * copy /templates/templates_defaults/common/tpl_footer.php to /templates/my_template/privacy/tpl_header.php<br />
     * to override the global settings and turn off the footer un-comment the following line:<br />
     * <br />
     * $flag_disable_header = true;<br />
     *
     * @package templateSystem
     * @copyright Copyright 2003-2006 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: tpl_header.php 4813 2006-10-23 02:13:53Z drbyte $
     */
    ?>
    <?php
      // Display all header alerts via messageStack:
      if ($messageStack->size('header') > 0) {
        echo $messageStack->output('header');
      }
      if (isset($_GET['error_message']) && zen_not_null($_GET['error_message'])) {
      echo htmlspecialchars(urldecode($_GET['error_message']));
      }
      if (isset($_GET['info_message']) && zen_not_null($_GET['info_message'])) {
       echo htmlspecialchars($_GET['info_message']);
    } else {
    
    }
    ?>
    
    <div id="fb-root"></div>
    <script>(function(d, s, id) {
      var js, fjs = d.getElementsByTagName(s)[0];
      if (d.getElementById(id)) return;
      js = d.createElement(s); js.id = id;
      js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
      fjs.parentNode.insertBefore(js, fjs);
    }(document, 'script', 'facebook-jssdk'));</script>
    
    
    <!--bof-header logo and navigation display-->
    <?php
    if (!isset($flag_disable_header) || !$flag_disable_header) {
    ?>
    
    <div id="abody">
        <div id="amain">
            <div id="acontent-1">
                 <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>
            </div>
            <div id="acontent-2">
                <div id="acontent-2-1">
                  <div id="navMainSearch"><?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></div>
                  <br class="clearBoth" />
                        <div id="tagline2"><?php echo HEADER_SALES_TEXT;?></div>
                        <div id="tagline"><?php echo HEADER_SALES_TEXT2;?></div>
                </div>
                <div id="acontent-2-2">
    <div id="navMain">
        <ul class="back">  
    <div id="maincontainer">
    <div id="topsection">
       <li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a>|</li>
         <?php if ($_SESSION['customer_id']) { ?>
       <li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a>|</li>
         <?php
            } else {
              if (STORE_STATUS == '0') {
          ?>
       <li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a>|</li>
         <?php } } ?>
       <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a></li><br> 
    </div>
    
    <div id="contentcolumn">
       <a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?> - <? echo $_SESSION['cart']->count_contents();?> item(s)<br> <? echo $currencies->format($_SESSION['cart']->show_total());?></a>
    </div>
    
    <div id="leftcolumn">
      <img src="http://d1xdpwxwt2wdkc.cloudfront.net/cart.png" class="cart-image" alt="the shopping cart" />
    </div>
    <br class="clearBoth" />
    <div id="footer">
      <div class="fb-like" data-href="<?php echo FACEBOOK_URL;?>" data-send="false" data-width="200" data-show-faces="false"></div>
    </div>
    
    </div>
    
    </ul>
                </div>
            </div>
        </div>
        <div id="afooter">
    <!--bof-drop down menu -->
     <?php include("tpl_drop_down.php"); ?>
    <!--eof-drop down menu -->
        </div>
    </div>
    
    
    <?php } ?>

  7. #157
    Join Date
    Dec 2008
    Location
    Utah, USA
    Posts
    182
    Plugin Contributions
    10

    Default Re: Abbiamo Supremo Support Thread

    Quote Originally Posted by mydogisfat View Post
    Brandon, here's the tpl_header.php
    Keeping my fingers crossed!!

    Code:
    <?php
    /**
     * Common Template - tpl_header.php
     *
     * this file can be copied to /templates/your_template_dir/pagename<br />
     * example: to override the privacy page<br />
     * make a directory /templates/my_template/privacy<br />
     * copy /templates/templates_defaults/common/tpl_footer.php to /templates/my_template/privacy/tpl_header.php<br />
     * to override the global settings and turn off the footer un-comment the following line:<br />
     * <br />
     * $flag_disable_header = true;<br />
     *
     * @package templateSystem
     * @copyright Copyright 2003-2006 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: tpl_header.php 4813 2006-10-23 02:13:53Z drbyte $
     */
    ?>
    <?php
      // Display all header alerts via messageStack:
      if ($messageStack->size('header') > 0) {
        echo $messageStack->output('header');
      }
      if (isset($_GET['error_message']) && zen_not_null($_GET['error_message'])) {
      echo htmlspecialchars(urldecode($_GET['error_message']));
      }
      if (isset($_GET['info_message']) && zen_not_null($_GET['info_message'])) {
       echo htmlspecialchars($_GET['info_message']);
    } else {
    
    }
    ?>
    
    <div id="fb-root"></div>
    <script>(function(d, s, id) {
      var js, fjs = d.getElementsByTagName(s)[0];
      if (d.getElementById(id)) return;
      js = d.createElement(s); js.id = id;
      js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
      fjs.parentNode.insertBefore(js, fjs);
    }(document, 'script', 'facebook-jssdk'));</script>
    
    
    <!--bof-header logo and navigation display-->
    <?php
    if (!isset($flag_disable_header) || !$flag_disable_header) {
    ?>
    
    <div id="abody">
        <div id="amain">
            <div id="acontent-1">
                 <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>
            </div>
            <div id="acontent-2">
                <div id="acontent-2-1">
                  <div id="navMainSearch"><?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></div>
                  <br class="clearBoth" />
                        <div id="tagline2"><?php echo HEADER_SALES_TEXT;?></div>
                        <div id="tagline"><?php echo HEADER_SALES_TEXT2;?></div>
                </div>
                <div id="acontent-2-2">
    <div id="navMain">
        <ul class="back">  
    <div id="maincontainer">
    <div id="topsection">
       <li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a>|</li>
         <?php if ($_SESSION['customer_id']) { ?>
       <li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a>|</li>
         <?php
            } else {
              if (STORE_STATUS == '0') {
          ?>
       <li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a>|</li>
         <?php } } ?>
       <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a></li><br> 
    </div>
    
    <div id="contentcolumn">
       <a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?> - <? echo $_SESSION['cart']->count_contents();?> item(s)<br> <? echo $currencies->format($_SESSION['cart']->show_total());?></a>
    </div>
    
    <div id="leftcolumn">
      <img src="http://d1xdpwxwt2wdkc.cloudfront.net/cart.png" class="cart-image" alt="the shopping cart" />
    </div>
    <br class="clearBoth" />
    <div id="footer">
      <div class="fb-like" data-href="<?php echo FACEBOOK_URL;?>" data-send="false" data-width="200" data-show-faces="false"></div>
    </div>
    
    </div>
    
    </ul>
                </div>
            </div>
        </div>
        <div id="afooter">
    <!--bof-drop down menu -->
     <?php include("tpl_drop_down.php"); ?>
    <!--eof-drop down menu -->
        </div>
    </div>
    
    
    <?php } ?>
    I used the exact same header text and CSS and its not having the same error. hmmm lets test this

    Add this to your stylesheet
    Code:
    #topsection a {font-size: 12px;} /* or font size you would like */
    if that does not work, remove it and try adding this

    Code:
    #topsection li {font-size: 12px;} /* or font size you would like */
    Zen Cart Help and Design

    If you don’t build your dream, someone else will hire you to help them build theirs.

  8. #158
    Join Date
    Dec 2008
    Location
    Utah, USA
    Posts
    182
    Plugin Contributions
    10

    Default Re: Abbiamo Supremo Support Thread

    I have released a much needed update for the template to completely reformat the header. Its pending with Zen Cart but you can download the new template HERE till its released

    Changes
    * Rewrote the header to fix all the formatting issues
    * Changed the drop down contact form in a table to line up the forms better
    * Adjusted some CSS for IE compatibility

    If you are upgrading the only files I changed was tpl_header.php, tpl_search_header and tpl_drop_down.php

    added some CSS code for the header as well in the stylesheet.css
    Zen Cart Help and Design

    If you don’t build your dream, someone else will hire you to help them build theirs.

  9. #159
    Join Date
    Jul 2012
    Posts
    58
    Plugin Contributions
    0

    Default Re: Abbiamo Supremo Support Thread

    Quote Originally Posted by brandonturpin View Post
    I have released a much needed update for the template to completely reformat the header. Its pending with Zen Cart but you can download the new template HERE till its released

    Changes
    * Rewrote the header to fix all the formatting issues
    * Changed the drop down contact form in a table to line up the forms better
    * Adjusted some CSS for IE compatibility

    If you are upgrading the only files I changed was tpl_header.php, tpl_search_header and tpl_drop_down.php

    added some CSS code for the header as well in the stylesheet.css
    nice one mate! how would i go about updating my template? drag and drop the files? or is it a case of replacing the files and just reworking them again?

  10. #160
    Join Date
    Dec 2008
    Location
    Utah, USA
    Posts
    182
    Plugin Contributions
    10

    Default Re: Abbiamo Supremo Support Thread

    Quote Originally Posted by PeazzAndycresswell View Post
    nice one mate! how would i go about updating my template? drag and drop the files? or is it a case of replacing the files and just reworking them again?

    You should be able to upload the new header file. From what I see you have not made too many changes to the layout of the header and you might just need to update the new CSS to match the colors on links and stuff.

    1) save all old files
    2) upload tpl_header.php
    3) copy the following part of the stylesheet.css and put it in your stylesheet.

    Code:
    #header-wrapper {width: 100%;}
    
    #header-left {float: left; width: 33%; padding-top: 5px;}
    
    #header-middle {float: left; width: 40%;}
    
    #header-right {float: left; width: 27%; padding-top: 10px;}
    
    
    #header-search {height: 55px; text-align: center;}
    
    #header-tagline {padding-top: 10px;}
    
    #tagline-one {float: left; width: 50%; color:#9dc236; font-size: .8em; text-align : center;}
    
    #tagline-two {float: left; width: 50%; color:#0072bc; font-size: .8em; text-align : center;}
     
    #header-right-nav {text-align: right; width: 100%;}
    
    #header-right-nav ul {margin: 0;}
    
    #header-right-nav li {display: inline; padding: 0 5px 0 5px; border-right: solid 1px #000;}
    
    #header-right-nav li.last {border-right: none;}
    
    #header-right-cart {padding-top: 10px;}
    
    #header-right-cart-right {float: right; background: #D8E8F3; width: 180px; height: 42px; text-align: center; font-size: 13px; padding-top: 5px;}
    
    #header-right-cart-left {float: right; width: 67px; height: 47px; background-image: url(../images/cart.png);}
    
    #header-right-social {float: right; margin-top: 10px; width: 220px; height: 10px;}
    4) Change this to match the colors on your site.
    5) upload the cart.png image to your images folder

    The drop down menu should not need to be changed, if you want the drop down contact you can just copy the contact part that has the table built in for styling.

    Make sure you back up your old files just in case you made changes on them and need to reference them, or go back to them
    Zen Cart Help and Design

    If you don’t build your dream, someone else will hire you to help them build theirs.

 

 
Page 16 of 24 FirstFirst ... 61415161718 ... LastLast

Similar Threads

  1. EasyPopulate 4.0 Support Thread
    By chadderuski in forum Addon Admin Tools
    Replies: 3594
    Last Post: 21 Mar 2024, 06:56 PM
  2. ZX Slideshow support thread
    By balihr in forum All Other Contributions/Addons
    Replies: 739
    Last Post: 20 Oct 2023, 05:50 AM
  3. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 19
    Last Post: 23 Jan 2023, 08:04 AM
  4. SysCheck [support thread]
    By swguy in forum All Other Contributions/Addons
    Replies: 36
    Last Post: 24 Oct 2020, 05:28 AM
  5. PurpleShades Support Thread
    By kobra in forum Addon Templates
    Replies: 122
    Last Post: 18 May 2011, 07:18 PM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR