• I am really new to WP and CSS, so please help me out with what may be a simple query

    My site is up and running — the only issue is I would like to remove the unsightly blue header (is this the right term??) on all my pages. Please help!!!

    <html <?php language_attributes(); ?> class=”<?php if ( $woo_options[‘woo_boxed_layout’] == ‘true’ ) echo ‘boxed’; ?> <?php if (!class_exists(‘woocommerce’)) echo ‘woocommerce-deactivated’; ?>”>
    <head>

    <meta charset=”<?php bloginfo( ‘charset’ ); ?>” />

    <title><?php woo_title(”); ?></title>
    <?php woo_meta(); ?>
    <link rel=”stylesheet” type=”text/css” href=”<?php bloginfo( ‘stylesheet_url’ ); ?>” media=”screen” />
    <link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>” />
    <?php
    wp_head();
    woo_head();
    ?>

    </head>

Viewing 1 replies (of 1 total)
  • Hi morimaven, try adding this rule to your custom css file

    p.demo_store {
    display:none;
    }

    It seems like you already tried to remove it but perhaps you should’ve added the <p>test</p> inside the div that follows, so it should’ve been something like
    <div style=”display:none”>
    <p class=”demo_store””>test</p>
    </div>

Viewing 1 replies (of 1 total)
  • The topic ‘Theme: Mystile Remove static header’ is closed to new replies.