Thread: Stylesheet hell

Results 1 to 10 of 10
  1. #1
    Join Date
    Apr 2008
    Location
    United Kingdom
    Posts
    62
    Plugin Contributions
    0

    css problem Stylesheet hell

    Hi

    I cannot seem to find how my stylesheet has gone wrong. It worked fine and now on some pages it is out of alignment. The currency drop down is all over the place and it is worse in I.E not so bad in Mozilla.

    I would really like some help.

    Site: www.assceneon.co.uk

    I am not even sure which stylesheet I should be changing. I have tried changing cherryzen and all the others I can but to no avail.

    Please please help.

    Dono

  2. #2
    Join Date
    Mar 2006
    Location
    Fresno, California
    Posts
    620
    Plugin Contributions
    0

    Default Re: Stylesheet hell

    My anti virus program identified your link as having malicious code.

  3. #3
    Join Date
    Nov 2008
    Posts
    25
    Plugin Contributions
    0

    Default Re: Stylesheet hell

    I see what you mean, I looked at your site in firefox and IE.

    obviously somewhere there is a code that IE doesn't like on there because the problem isn't just in the currency file dropdown, it's also in the navbar, the search area, and the whole left side boxes. am I missing any others?

    To better help you, you will need to post your stylesheet codes for us to see, so we can find where the issue might be.

    Also when giving the link, give a direct link and not just a forwarded link. That may help us in finding the problem as well.

    http://www.dochsa.com/assceneon/Shop/

  4. #4
    Join Date
    Nov 2008
    Posts
    25
    Plugin Contributions
    0

    Default Re: Stylesheet hell

    Quote Originally Posted by bobdog View Post
    My anti virus program identified your link as having malicious code.
    Try going directly to his cart, via:
    http://www.dochsa.com/assceneon/Shop/

    Is there still a malicious code?

  5. #5
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: Stylesheet hell

    Quote Originally Posted by leavellwd View Post
    Try going directly to his cart, via:
    http://www.dochsa.com/assceneon/Shop/

    Is there still a malicious code?
    Yes..avast antivirus goes into overdrive at that url..

  6. #6
    Join Date
    Apr 2008
    Location
    United Kingdom
    Posts
    62
    Plugin Contributions
    0

    Default Re: Stylesheet hell

    Quote Originally Posted by leavellwd View Post
    Try going directly to his cart, via:
    http://www.dochsa.com/assceneon/Shop/

    Is there still a malicious code?
    Hi

    I find this all so mad... how or who has been able to put a virus on the site? I am not skilled enough to even know where to start looking for it. I would appreciate some help with this please.

    I have attached the site: http://www.dochsa.com/assceneon/Shop/.

    Not sure how to post the stylesheet? Should I post the whole thing on here or should send it in a link? And what stylesheet codes should I post there are quite a few.

    Once again thank you for your help so far!

    Regards

    Dono

  7. #7
    Join Date
    Apr 2008
    Location
    United Kingdom
    Posts
    62
    Plugin Contributions
    0

    Default Re: Stylesheet hell

    I have download all the files from the web and used a virus checker and I have not found anything. But when a collegue of mine navigated to the site it somehow down loaded a virus to his PC. How do I get rid of this please help.

    I also have uploaded all my original file from a backup but it still seem to have the Stylesheet errors. I am really at my wits end.

    Please help me.

    Dono

  8. #8
    Join Date
    Mar 2007
    Location
    AZ
    Posts
    1,911
    Plugin Contributions
    2

    Default Re: Stylesheet hell

    You need to follow the steps outlined in the Recovering From a Hack.

    http://www.zen-cart.com/forum/forumdisplay.php?f=134

    Tina

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

    Default Re: Stylesheet hell

    These don't look like stylesheet errors. I think that there's structural errors on the site.

    Did you put the iframes with all the obfuscated javascript on the site? IF not, I'd get rid of them double quick - I suspect that they've been inserted into your tpl_main_page.php file - but can't be sure of that.

    And then you have some validation errors to be fixed.
    Kuroi Web Design and Development | Twitter

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

  10. #10
    Join Date
    Apr 2008
    Location
    United Kingdom
    Posts
    62
    Plugin Contributions
    0

    Default Re: Stylesheet hell

    Hi

    I have contacted my service provide Yahoo and have asked about being hacked. I am yet to here from them. I will be taking the site off line but wish that I could fix this before I take this drastic measure, so I have taken Kuroi's advice but still need some help.


    Here is the tpl_main_page.php file, I cannot seem to find the iframe, reference.

    <?php
    /**
    * Common Template - tpl_main_page.php
    *
    * Governs the overall layout of an entire page<br />
    * Normally consisting of a header, left side column. center column. right side column and footer<br />
    * For customizing, 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_main_page.php to /templates/my_template/privacy/tpl_main_page.php<br />
    * <br />
    * to override the global settings and turn off columns un-comment the lines below for the correct column to turn off<br />
    * to turn off the header and/or footer uncomment the lines below<br />
    * Note: header can be disabled in the tpl_header.php<br />
    * Note: footer can be disabled in the tpl_footer.php<br />
    * <br />
    * $flag_disable_header = true;<br />
    * $flag_disable_left = true;<br />
    * $flag_disable_right = true;<br />
    * $flag_disable_footer = true;<br />
    * <br />
    * // example to not display right column on main page when Always Show Categories is OFF<br />
    * <br />
    * if ($current_page_base == 'index' and $cPath == '') {<br />
    * $flag_disable_right = true;<br />
    * }<br />
    * <br />
    * example to not display right column on main page when Always Show Categories is ON and set to categories_id 3<br />
    * <br />
    * if ($current_page_base == 'index' and $cPath == '' or $cPath == '3') {<br />
    * $flag_disable_right = true;<br />
    * }<br />
    *
    * @package templateSystem
    * @copyright Copyright 2003-2007 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_main_page.php 7085 2007-09-22 04:56:31Z ajeh $
    */

    // the following IF statement can be duplicated/modified as needed to set additional flags
    if (in_array($current_page_base,explode(",",'list_pages_to_skip_all_right_sideboxes _on_here,separated_by_commas,and_no_spaces')) ) {
    $flag_disable_right = true;
    }
    $header_template = 'tpl_header.php';
    $footer_template = 'tpl_footer.php';
    $left_column_file = 'column_left.php';
    $right_column_file = 'column_right.php';
    $body_id = ($this_is_home_page) ? 'indexHome' : str_replace('_', '', $_GET['main_page']);
    ?>
    <body id="<?php echo $body_id . 'Body'; ?>"<?php if($zv_onload !='') echo ' onload="'.$zv_onload.'"'; ?>>
    <?php
    if (SHOW_BANNERS_GROUP_SET1 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET1)) {
    if ($banner->RecordCount() > 0) {
    ?>
    <div id="bannerOne" class="banners"><?php echo zen_display_banner('static', $banner); ?></div>
    <?php
    }
    }
    ?>

    <?php
    /**
    * prepares and displays header output
    *
    */
    if (CUSTOMERS_APPROVAL_AUTHORIZATION == 1 && CUSTOMERS_AUTHORIZATION_HEADER_OFF == 'true' and ($_SESSION['customers_authorization'] != 0 or $_SESSION['customer_id'] == '')) {
    $flag_disable_header = true;
    }
    require($template->get_template_dir('tpl_header.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_header.php');?>
    <div id="contentMainWrapper">
    <div id="contentMainWrapperb">
    <div class="outer">
    <div class="inner">
    <div class="float-wrap">
    <div id="content">
    <div class="contentWrap">
    <?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 breadcrumb -->
    <?php if (DEFINE_BREADCRUMB_STATUS == '1' || (DEFINE_BREADCRUMB_STATUS == '2' && !$this_is_home_page) ) { ?>
    <div id="navBreadCrumb"><?php echo $breadcrumb->trail(BREAD_CRUMBS_SEPARATOR); ?></div>
    <?php } ?>
    <!-- eof breadcrumb -->
    <?php
    if (SHOW_BANNERS_GROUP_SET3 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET3)) {
    if ($banner->RecordCount() > 0) {
    ?>
    <div id="bannerThree" class="banners"><?php echo zen_display_banner('static', $banner); ?></div>
    <?php
    }
    }
    ?>
    <!-- bof upload alerts -->
    <?php if ($messageStack->size('upload') > 0) echo $messageStack->output('upload'); ?>
    <!-- eof upload alerts -->
    <?php
    /**
    * prepares and displays center column
    *
    */
    require($body_code); ?>
    </div>
    <!--<end contentWrap> -->
    </div>
    <!-- end content-->
    <?php
    if (COLUMN_LEFT_STATUS == 0 || (CUSTOMERS_APPROVAL == '1' and $_SESSION['customer_id'] == '') || (CUSTOMERS_APPROVAL_AUTHORIZATION == 1 && CUSTOMERS_AUTHORIZATION_COLUMN_LEFT_OFF == 'true' and ($_SESSION['customers_authorization'] != 0 or $_SESSION['customer_id'] == ''))) {
    // global disable of column_left
    $flag_disable_left = true;
    }
    if (!isset($flag_disable_left) || !$flag_disable_left) {
    ?>
    <div id="navColumnOne" class="columnLeft" style="width: <?php echo COLUMN_WIDTH_LEFT; ?>">
    <?php
    /**
    * prepares and displays left column sideboxes
    *
    */
    ?>
    <div id="navColumnOneWrapper" style="width: <?php echo BOX_WIDTH_LEFT; ?>">
    <?php require(DIR_WS_MODULES . zen_get_module_directory('column_left.php')); ?>
    </div>
    </div>
    <!-- end left div -->
    <div class="clearBoth"></div>
    </div>
    <!-- end float-wrap -->
    <?php
    }
    ?>
    <?php
    if (COLUMN_RIGHT_STATUS == 0 || (CUSTOMERS_APPROVAL == '1' and $_SESSION['customer_id'] == '') || (CUSTOMERS_APPROVAL_AUTHORIZATION == 1 && CUSTOMERS_AUTHORIZATION_COLUMN_RIGHT_OFF == 'true' and ($_SESSION['customers_authorization'] != 0 or $_SESSION['customer_id'] == ''))) {
    // global disable of column_right
    $flag_disable_right = true;
    }
    if (!isset($flag_disable_right) || !$flag_disable_right) {
    ?>
    <div id="navColumnTwo" class="columnRight" style="width: <?php echo COLUMN_WIDTH_RIGHT; ?>">
    <?php
    /**
    * prepares and displays right column sideboxes
    *
    */
    ?>
    <div id="navColumnTwoWrapper" style="width: <?php echo BOX_WIDTH_RIGHT; ?>">
    <?php require(DIR_WS_MODULES . zen_get_module_directory('column_right.php')); ?>
    </div>
    </div>
    <!-- end right div -->
    <?php
    }
    ?>
    <?php
    if (SHOW_BANNERS_GROUP_SET4 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET4)) {
    if ($banner->RecordCount() > 0) {
    ?>
    <div id="bannerFour" class="banners"><?php echo zen_display_banner('static', $banner); ?></div>
    <?php
    }
    }
    ?>
    <div class="clearBoth"></div>
    </div>
    <!-- end inner -->
    </div>
    <!-- end outer -->
    </div>
    <!-- end ContentMainwrapper -->
    </div>
    <!-- end ContentMainwrapperb -->
    <?php
    /**
    * prepares and displays footer output
    *
    */
    if (CUSTOMERS_APPROVAL_AUTHORIZATION == 1 && CUSTOMERS_AUTHORIZATION_FOOTER_OFF == 'true' and ($_SESSION['customers_authorization'] != 0 or $_SESSION['customer_id'] == '')) {
    $flag_disable_footer = true;
    }
    require($template->get_template_dir('tpl_footer.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_footer.php');?>

    <!-- end mainWrapper -->
    <?php
    if (DISPLAY_PAGE_PARSE_TIME == 'true') {
    ?>
    <!--bof- parse time display -->
    <div class="smallText center">Parse Time: <?php echo $parse_time; ?> - Number of Queries: <?php echo $db->queryCount(); ?> - Query Time: <?php echo $db->queryTime(); ?></div>
    <!--eof- parse time display -->
    <?php
    }
    ?>
    <?php
    if (SHOW_BANNERS_GROUP_SET6 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET6)) {
    if ($banner->RecordCount() > 0) {
    ?>
    <!--bof- banner #6 display -->
    <div id="bannerSix" class="banners"><?php echo zen_display_banner('static', $banner); ?></div>
    <!--eof- banner #6 display -->
    <?php
    }
    }
    ?>
    </body>


    You also mention some validations errors. Where would I find these?

    Regards

    Dono

 

 

Similar Threads

  1. Header Hell
    By clareclive in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 20 Nov 2011, 06:01 PM
  2. Exchange server hell
    By canemasters in forum General Questions
    Replies: 6
    Last Post: 30 Jun 2011, 04:46 AM
  3. Switching Server Hell
    By Lost and Confused in forum Installing on a Linux/Unix Server
    Replies: 11
    Last Post: 15 Apr 2010, 01:00 AM
  4. Media Manager Hell...
    By oldschoolrocker in forum General Questions
    Replies: 2
    Last Post: 11 Jun 2006, 01:04 AM

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