Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #14420

    Hello,

    I am creating a website with the catch everest (free) theme.

    I want to put the Logo of the website behind the Title of the webpage. In the template header.php there is no header title where I can put the img tag behind it.

    Could you please help me?

    The website’s name is: daniel.australien.tinig.de

    Many thanks in advance,

    Daniel Trieglaff

    #14459
    Sakin
    Keymaster

    @cabron_berlino: Sorry I don’t think I understand your request properly. I assume that you are trying to make logo at the left and then site title and description follow it. To do that you can just add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #site-logo {
        display: inline;
    }
    #hgroup.with-logo {
        clear: none;
        display: inline;
    }

    If you are talking about different. Then please share your screenshot of what you want to achieve and then I will give you the suggestion.

    #14494

    Hello Sakin,

    thank you for your help, unfortunately it doesn’t work.

    Here is the header like it is at the moment:
    Header with the logo above

    And here is where I want the site Logo to be:
    Site title and the the site logo

    Many thanks again,

    Daniel

    #14507
    Sakin
    Keymaster

    @cabron_berlino: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #site-logo {
        display: inline;
        float: right;
    }
    #hgroup.with-logo {
        clear: none;
        display: inline;
        float: left;
    }
    #14542

    Hello Sakin,

    thanks a lot. This works perfectly.

    Cheers, Daniel

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Logo after Headline’ is closed to new replies.