Forum Replies Created

Viewing 3 replies - 16 through 18 (of 18 total)
  • Your problem is indeed the CSS, if you do not already use it I would recommend using FireBug which is a very good debugging addon for FireFox.

    Also, maps are (in my opinion) rather useless. It is usually a better idea to use images on a layer on top of the base image.

    To fix the CSS problem you need to change the margin of the header. There are probably better ways to do this, but I played about for a few minutes in firebug and found that setting the padding and margin to 0 only worked for half of it. This way does work:

    #header {
         height:113px;
         margin-top:-55px;
    }

    I hope it helps.
    ~Shane Hudson

    There could be a plugin causing this, though I have never heard of such thing. Which plugins are you using?

    Does anybody have access to either your wp-admin or your database?

    The way it uses an alert box makes me think that it is someone’s attempt at hacking your website… though that is only due to previous experience with hackers (though anyone clever would obviously make it look like an error rather than a hacker.

    If you go to single.php in your theme files, you will be able to locate the link with the title in it.

    It will look something like:

    <h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>

    You would change it to:

    <h2><?php the_title(); ?></h2>

    I hope this helps you,
    ~Shane Hudson

Viewing 3 replies - 16 through 18 (of 18 total)