Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter Monty54

    (@monty54)

    Hi
    When I use the standard template supplied with WordPress (Twenty Eleven) there is an option in the dashboard under Appearance called Header as well as Background. (as well as Theme, Widget, Menus, Theme Options, Editor)
    When I activate the Centivio theme these two items are NOT in the menu under Appearance.
    The header files I sent you were from c:/wamp/www/wp-content/themes/centivio
    Regards
    John

    Thread Starter Monty54

    (@monty54)

    This is the Header.php code in the theme (I am not technical in this so it doesn’t make much sense to me?

    <?php
    /**
    * The Header for our theme.
    * @package WordPress
    * @subpackage Centivio
    * @since Centivio 1.0
    */
    ?><!DOCTYPE html>
    <html <?php language_attributes(); ?>>
    <head>
    <meta charset=”<?php bloginfo( ‘charset’ ); ?>” />
    <title><?php
    /*
    * Print the <title> tag based on what is being viewed.
    * We filter the output of wp_title() a bit — see
    * twentyten_filter_wp_title() in functions.php.
    */
    wp_title( ‘|’, true, ‘right’ );

    ?></title>
    <link rel=”profile” href=”http://gmpg.org/xfn/11&#8243; />
    <link rel=”stylesheet” type=”text/css” media=”all” href=”<?php bloginfo( ‘stylesheet_url’ ); ?>” />
    <link href=”<?php bloginfo(‘template_url’); ?>/prettyPhoto.css” rel=”stylesheet” type=”text/css” />

    <link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>” />
    <?php
    $favicon = get_option(‘templatesquare_favicon’);
    if($favicon ==”” ){
    ?>
    <link rel=”shortcut icon” href=”<?php bloginfo(‘template_url’); ?>/images/favicon.ico” />
    <?php }else{?>
    <link rel=”shortcut icon” href=”<?php echo $favicon; ?>” />
    <?php }?>
    <?php
    /* We add some JavaScript to pages with the comment form
    * to support sites with threaded comments (when in use).
    */
    if ( is_singular() && get_option( ‘thread_comments’ ) )
    wp_enqueue_script( ‘comment-reply’ );

    /* Always have wp_head() just before the closing </head>
    * tag of your theme, or you will break many plugins, which
    * generally use this hook to add elements to <head> such
    * as styles, scripts, and meta tags.
    */
    wp_head();
    ?>
    <!– ////////////////////////////////// –>
    <!– // Javascript Files // –>
    <!– ////////////////////////////////// –>

    <script type=”text/javascript”>
    <!– jquery slidebox –>
    $(document).ready(function(){
    $(“.boxite”).hover(function() {
    $(this).children(“.boxmeta”).slideDown(“slow”) ;
    }, function() {
    $(this).children(“.boxmeta”).slideUp(“3000”);
    });
    });

    </script>

    <script type=”text/javascript”>
    /* for Slider */
    $(function() {
    $(‘#slideshow img:first’).fadeIn(700, function() {$(‘#slideshow’).cycle();});
    });

    jQuery(document).ready(function($) {

    /* for portfolio prettyPhoto */
    $(“#gallery a[rel^=’prettyPhoto’]”).prettyPhoto({theme:’dark_rounded’});

    /* for Testimonial cycle */
    $(‘.boxslideshow’).cycle({
    timeout: 6000, // milliseconds between slide transitions (0 to disable auto advance)
    fx: ‘fade’, // choose your transition type, ex: fade, scrollUp, shuffle, etc…
    pause: 0, // true to enable “pause on hover”
    pauseOnPagerHover: 0 // true to pause when hovering over pager link
    });

    });
    </script>

    <script type=”text/javascript”>
    var $ = jQuery.noConflict();
    $(document).ready(function() {
    /* for top navigation */
    $(” #topnav ul “).css({display: “none”}); // Opera Fix
    $(” #topnav li”).hover(function(){
    $(this).find(‘ul:first’).css({visibility: “visible”,display: “none”}).slideDown(400);
    },function(){
    $(this).find(‘ul:first’).css({visibility: “hidden”});
    });

    });
    </script>

    <!–[if lte IE 6 ]>
    <script type=”text/javascript” src=”<?php bloginfo(‘template_url’); ?>/js/unitpngfix.js”></script>
    <![endif]–>
    <script type=”text/javascript”>
    var clear=”<?php echo bloginfo(‘stylesheet_directory’); ?>/images/clear.gif” //clear block img png ie6
    </script>

    </head>

    <body <?php body_class(); ?>>
    <div id=”wrapper”>
    <?php if(is_front_page()){
    $con = “main_container”;
    }else{
    $con = “main_container_inner”;
    }
    ?>
    <div id=”<?php echo $con; ?>”>
    <div id=”centercolumn”>
    <div id=”top”>

    <?php
    $logotype = get_option(‘templatesquare_logo_type’);
    $logoimage = get_option(‘templatesquare_logo_image’);
    $sitename = get_option(‘templatesquare_site_name’);
    $tagline = get_option(‘templatesquare_tagline’);
    if($logoimage == “”){ $logoimage = get_bloginfo(‘stylesheet_directory’) . “/images/logo.png”; }
    ?>
    <?php if($logotype == ‘textlogo’){ ?>
    <div id=”logo”>
    <?php if($sitename==”” && $tagline==””){?>
    <div id=”pad_logo”>
    <h1>/” title=”<?php _e(‘Click for Home’,’templatesquare’); ?>”><?php bloginfo(‘name’); ?></h1>
    <span class=”desc”><?php bloginfo(‘description’); ?></span>
    </div>
    <?php }else{ ?>
    <div id=”pad_logo”>
    <h1>/” title=”<?php _e(‘Click for Home’,’templatesquare’); ?>”><?php echo $sitename; ?></h1>
    <span class=”desc”><?php echo $tagline; ?></span>
    </div>
    <?php }?>
    </div><!– end #logo –>
    <?php } else { ?>
    <div id=”logo”>” title=”<?php echo esc_attr( get_bloginfo( ‘name’, ‘display’ ) ); ?>” rel=”home”><img src=”<?php echo $logoimage;?>” alt=”” /></div><!– end #logo –>
    <?php }?>

    <div id=”contact”>
    <div class=”sidebar_top”>
    <div class=”ctbox”>
    <?php $website = get_option(‘templatesquare_website’); ?>
    <?php $emailcontact = get_option(‘templatesquare_email_contact’); ?>
    <?php $phonecontact = get_option(‘templatesquare_phone_contact’); ?>

    </div>
    </div>
    </div>

    <div id=”topmenu”>
    <div id=”nav”>
    <?php
    wp_nav_menu( array(
    ‘container’ => ‘ul’,
    ‘menu_class’ => ‘menu’,
    ‘menu_id’ => ‘topnav’,
    ‘depth’ => 0,
    ‘theme_location’ => ‘mainmenu’,
    ‘walker’ => new description_walker())
    );

    ?>
    </div>
    </div>
    </div><!– end of topmenu –>

    <?php if(is_front_page() ){?>
    <?php include_once(TEMPLATEPATH . ‘/slider.php’); ?>
    <?php }?>

    Thread Starter Monty54

    (@monty54)

    Thanks.
    They don’t seem to support??
    Looks like I wasted my $$
    Cheers
    John

    Thread Starter Monty54

    (@monty54)

    http://themeforest.net/item/centivio-business-wordpress-theme-10-colors/75117

    I uploaded this and turned on their content from the original site template.
    Regards
    John

Viewing 4 replies - 1 through 4 (of 4 total)