• The Breaking News 1.0 by ShinRa theme is what my client is using for his WP blog, https://www.askyouradviser.com and when you view it in Internet Explorer, the header logo is not supposed to be sitting in the middle of the page. It blocks the blog title. However, in FireFox, it displays to the left of the window which is the way it should be viewed.

    Any suggestions as to why this is happening?

    Thank you,
    Aletha

Viewing 4 replies - 1 through 4 (of 4 total)
  • your theme has a IE specific stylesheet that does it

    <link rel="stylesheet" href="https://askyouradviser.com/wp-content/themes/breaking-news-10/breaking-news-10/style.css" type="text/css" media="screen" />
    <!--[if IE]>
    <link rel="stylesheet" type="text/css" media="screen" href="https://askyouradviser.com/wp-content/themes/breaking-news-10/breaking-news-10/ie-style.css" />
    <![endif]-->

    standard css

    #header div.logo{
    display:block;
    width:142px;
    height:75px;
    background:transparent url(images/logo.png) no-repeat left top;
    position:absolute;
    top:10px;
    margin-left:10px;
    }

    IE css

    * html #header div.logo{
    background-image:url(images/logo.gif);
    left:10px;
    }

    Hello to all,
    Maybe you could help. I was wondering, where do I go to modify the size of the header/blog title, when using breaking news 10 theme. ?
    Thankyou,
    aguitta

    Style.css

    True, I have dont just so. Actually I did a couple of things that worked!.
    Within style.css, I Modified in this way.

    #header h2 a{
    color:#990000;
    text-decoration: none;
    text-shadow:#999999;
    font-size:10px

    I was indeed looking for what part of the css to modify. This is simple enough, found it at…
    https://www.wordpressmax.com/wordpress-guide/change-wordpress-header-font

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Theme Header Showing Wrong in Internet Explorer’ is closed to new replies.