Header and footer in Edin theme

  • Unknown's avatar

    I want to change my tagline to appear in the center of my header and I also want to change my footer to appear blue in color as opposed to the default dark grey. How can I do this ?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hello @alphatqm,
    Use the following CSS to,
    Change the footer color to blue:

    .footer-widget-area {
        background: #1279be;
    }

    I cannot find any tagline on your site, can you please tell us exactly which element(possibly include the text) are you referring to when you say tagline?

    Thanks!

  • Unknown's avatar

    I want to have ‘Your partner In Healthcare’ displayed across the top of the website in a small font, without my other headings changing to small font also, if this is possible.

  • Unknown's avatar

    Okay, I tried out your theme and saw that it only displays the site-title and not any taglines. So it is not possible to edit it’s CSS and move it across the header.

    But, here’s a solution. We can add a (pseudo)element just before the header and add the tagline ‘Your partner In Healthcare’ across the header for all pages using CSS like this:

    .header-wrapper:before {
        content: "Your partner in Healthcare";   // edit this value to change your tagline
        position: relative;
        display: block;
        text-align: center;
        padding: 10px;
        font-size: 1.1em;
        font-style: italic;
        font-weight: normal;
    }

    This code is independent of all the other headings on the site, so it wont change the font size of any other headings.

    Hope this helps :)

  • The topic ‘Header and footer in Edin theme’ is closed to new replies.