Logo and Ads in Header widget no longer work

  • jmadrid2

    #6120

    After some kind of update (not sure exactly what was updated as I have handed over Admin duties of the site to someone else), my logo and ads in my header widget no longer work. I have made some changes to try and correct this, but no go and could use some help. This has been working since February with no issues and it just started having issues two days ago. I have a child theme and currently my ads are displaying over my logo.

    Style.css

    /*
    Theme Name: Graphene Child Theme
    Theme URI: http://www.mma-latino.com
    Description: Child theme for The Graphene Theme
    Author: Jose Madrid
    Author URI: http://www.mma-latino.com
    Template: graphene
    Version: 0.1
    */
    @import url("../graphene/style.css");

    #header{
    background-color:#F0F8FF;
    background-repeat:no-repeat;
    height:90px;
    margin-left:0px;
    width:232px;
    }
    .header-widget {
    position: absolute;
    margin-left: 232px;
    float: left;
    }
    #text-3 {
    margin-left: 233px;
    }

    Functions.php

    <?php
    function graphene_custom_header_width(){
    return 232;
    }
    function graphene_custom_header_height(){
    return 90;
    }
    add_filter('graphene_header_image_width', 'graphene_custom_header_width');
    add_filter('graphene_header_image_height', 'graphene_custom_header_height');
    ?>

    The page itself can be viewed here: http://www.mma-latino.com. Any suggestions?

    Mod

    Kenneth John Odle

    #33411

    You have upgraded to 1.8.2, so you can now define the header height and width through the theme options. Try switching back to Graphene and setting the options there and seeing if the problems go away.

Viewing 2 posts - 1 through 2 (of 2 total)

  • You must be logged in to reply to this topic.