Forum Replies Created

Viewing 1 replies (of 1 total)
  • Can you let me know how you removed the arrows, as we would prefer not to have them as well?!

    Thank you!!

    CODE: (Currently working fine)

    <!DOCTYPE html><!– HTML 5 –>
    <html <?php language_attributes(); ?>>

    <head>
    <meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” />
    <link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />

    <title><?php wp_title(‘|’, true, ‘right’); ?></title>

    <?php wp_head(); ?>
    </head>

    <body <?php body_class(); ?>>

    <?php themezee_wrapper_before(); // hook before #wrapper ?>
    <div id=”wrapper”>

    <!– THIS IS FOR SHOWING THE CORRECT COLOR FOR THE DESCRIPTION (COULD NOT FIND IN CSS?!) –>

    <div class=”description”><b><center><font color=”White”><?php bloginfo(‘description’); ?></b></center></font>

    </div>

    <?php themezee_header_before(); // hook before #header ?>
    <div id=”header”>

    <div id=”head”>
    <div id=”logo”>
    <?php
    $options = get_option(‘themezee_options’);
    if ( isset($options[‘themeZee_general_logo’]) and $options[‘themeZee_general_logo’] <> “” ) { ?>
    “><img src=”<?php echo esc_url($options[‘themeZee_general_logo’]); ?>” alt=”Logo” />
    <?php } else { ?>
    /”><h1><?php bloginfo(‘name’); ?></h1>
    <?php } ?>
    </div>
    <div id=”navi”>
    <?php
    // Get Navigation out of Theme Options
    wp_nav_menu(array(‘theme_location’ => ‘navi’, ‘container’ => false, ‘menu_id’ => ‘nav’, ‘echo’ => true, ‘fallback_cb’ => ‘themezee_default_menu’, ‘before’ => ”, ‘after’ => ”, ‘link_before’ => ”, ‘link_after’ => ”, ‘depth’ => 0));
    ?>
    </div>
    <div class=”clear”></div>
    </div>
    </div>
    <?php themezee_header_after(); // hook after #header ?>
    <?php if( get_header_image() != ” ) : ?>
    <div id=”custom_header_bg”>
    <div id=”custom_header”>

    <div class=”headerslider”> <?php echo do_shortcode(‘[sp_responsiveslider limit=”-1″]’); ?></div>

    </div>

    <?php endif; ?>
    </div>

Viewing 1 replies (of 1 total)