Results 1 to 8 of 8

Hybrid View

  1. #1
    Join Date
    Sep 2007
    Posts
    6
    Plugin Contributions
    0

    Default Can anyone help me solve this problems - Atheme

    i just installed the new zen-cart, and used the atheme free skin.
    I have some question to ask

    1 the two sidebox that seem doest not fit the screen. how can i move both side both to the side, so it would fit for every browser?

    2 the text size for categories is so small, is there a way i can bolder it or make them bigger. look different than the rest

    3 also. is there a way that i can change text size for entire sites?

  2. #2
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: Can anyone help me solve this problems

    1 and 2 are difficult to answer without seeing your site. You can adjust the font size for the site overall by changing the font-size applied to body in your stylesheet.
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  3. #3
    Join Date
    Sep 2007
    Posts
    6
    Plugin Contributions
    0

    Default Re: Can anyone help me solve this problems

    tpl_header.php

    I think it should do something here, but i dont know how.
    thanks!

    <?php
    /**
    * Atheme Template - tpl_header.php
    *
    * @package templateSystem
    * @copyright Copyright 2007 iChoze Internet Solutions http://ichoze.com
    * @copyright Portions 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 {

    }
    ?>


    <!--bof-header logo and navigation display-->
    <?php
    if (!isset($flag_disable_header) || !$flag_disable_header) {
    ?>

    <div id="headerWrapper">
    <!--bof-branding display-->
    <div id="logoWrapper">
    <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 if (HEADER_SALES_TEXT != '') { ?>
    <div id="taglineWrapper">
    <?php
    if (HEADER_SALES_TEXT != '') {
    ?>
    <div id="tagline"><?php echo HEADER_SALES_TEXT;?></div>
    <?php
    }
    ?>
    <!--bof-navigation display-->
    <div id="navMainWrapper">
    <div id="navMain">
    <ul class="back">
    <?php if ($_SESSION['customer_id']) { ?>
    <li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a> |</li>
    <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a></li>
    <?php
    } else {
    if (STORE_STATUS == '0') {
    ?>
    <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a> |</li>
    <li><a href="<?php echo zen_href_link(FILENAME_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_SHIPPING; ?></a></li>
    <?php } } ?>

    <?php if ($_SESSION['cart']->count_contents() != 0) { ?>
    <li> | <a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
    <?php }?>
    </ul>
    </div>
    </div>
    <!--eof-navigation display-->
    </div>
    <?php } // no HEADER_SALES_TEXT ?>
    </div>
    <br class="clearBoth" />
    <!--eof-branding display-->
    <!--eof-header logo and navigation display-->
    </div>
    <?php
    if (HEADER_DROP_SWITCH == '1'){
    require($template->get_template_dir('tpl_drop_menu.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_drop_menu.php');
    }else{
    require($template->get_template_dir('tpl_modules_categories_tabs.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_categories_tabs.php');
    }?>
    <div id="searchCartBarWrapper">
    <div id="searchCartBar">
    <div id="cartContent">
    <a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo $_SESSION['cart']->count_contents() . HEADER_TITLE_CCONTENTS; ?></a>
    </div>
    <div id="altLinks">
    <a href="<?php echo zen_href_link(FILENAME_SPECIALS, '', 'NONSSL'); ?>"><?php echo HEADER_SUB_SPECIALS;?></a> |
    <a href="<?php echo zen_href_link(FILENAME_FEATURED_PRODUCTS, '', 'NONSSL'); ?>"><?php echo HEADER_SUB_FEATURED;?></a> |
    <a href="<?php echo zen_href_link(FILENAME_PRODUCTS_ALL, '', 'NONSSL'); ?>"><?php echo HEADER_SUB_ALLPRODUCTS;?></a>
    </div>
    <?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?>

    </div>
    <?php
    if (EZPAGES_STATUS_HEADER == '1' or (EZPAGES_STATUS_HEADER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) {
    require($template->get_template_dir('tpl_ezpages_bar_header.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_header.php');
    }?><div class="clearBoth"></div>
    </div>

    <?php } ?>

    any suggestion would be appreciate!

  4. #4
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: Can anyone help me solve this problems - Atheme

    The code that you have posted is not relevant to either sideboxes or font sizes. Your question 3 has been answered above and I repeat that your questions 1 and 2 will be difficult to answer without seeing how your specific site has been set up and in particular the content in the errant sideboxes.
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  5. #5
    Join Date
    Sep 2007
    Posts
    6
    Plugin Contributions
    0

    Default Re: Can anyone help me solve this problems - Atheme

    i think i fixed the problem for both #1 and 2 but i have another questions regarding of header part.
    Can anyone show me how to move the link on the top ( My Account/ Shipping Info) to the place next to Search box, Near specials/ Features Items/ View all Products.?

    my site http://techs-depot.com

    The top part that show different place for My account and Shipping Info in both Firefox and IE browers, and i want to move it the Special/Features Items, or the drop bar above, does not matter, as long as it does not stay on the top of the page with messing around the logo.

    I try and it does not work, i am not good at this. T think it have do to something with the quote i have post above. i don't know.

    Very Appreciate for any help

  6. #6
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: Can anyone help me solve this problems - Atheme

    You are referring to the navigation menu. This is generated by the code between <!--bof-navigation display--> and <!--eof-navigation display--> in the code you posted above.

    To move it, you would take all the code from <!--bof-navigation display--> to <!--eof-navigation display--> inclusive and move it to where you want it to go, which by the sounds of it would be just after the following code
    <?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?>

    </div>
    You will probably need also to tweak the CSS for these areas to have them display nicely together.
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

 

 

Similar Threads

  1. How can I solve this checkout issue?
    By JerryRice in forum Templates, Stylesheets, Page Layout
    Replies: 8
    Last Post: 30 Jun 2010, 10:31 AM
  2. Help to solve this issue
    By lorhan in forum General Questions
    Replies: 3
    Last Post: 30 Mar 2008, 03:38 PM
  3. Anyone know how to solve this? is it my host?
    By sportrecovery in forum General Questions
    Replies: 3
    Last Post: 18 Dec 2007, 02:42 AM
  4. Can anyone help with this?
    By raindark in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 25 Oct 2006, 04:17 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