WordPress.org

Forums

[resolved] SnowBlind Theme -- addition to header (3 posts)

  1. nielsrump
    Member
    Posted 3 years ago #

    I have installed the SnowBlind theme <http://tinkerpriestmedia.com/free-wordpress-themes/snowblind/> which I love. I also installed LanguageSwitcher <http://www.poplarware.com/languageplugin.html> to allow my site to be bilingual.

    But I dont want to waste put a widget into the sidebar to change the language; its a huge waste of real estate. Rather I'd like to add two flags to appear above/below the search bar of the header. This is how it looks at the moment: <http://nielsrump.net>.

    Any suggestion how I can do that? (I'd be happy to just have the word "test" appear in the header above/below the search bar for now -- the rest I can then manage).

    Thanks
    Niels

  2. alchymyth
    The Sweeper & Moderator
    Posted 3 years ago #

    try and add a new div into the header.php like this (just after the <div id="header">:

    <!-- begin header -->
         <div id="header">
    <div style="color:white; position:relative;
    left:580px; top:30px;
    margin-top:-20px; ">text here </div>

    (or the same, only definig the style in the style.css:)

    <!-- begin header -->
         <div id="header">
    <div id="language-switch">text here </div>

    and add in the style.css:

    #language-switch {
    color:white; position:relative;
    left:580px; top:30px;
    margin-top:-20px;
    }
  3. nielsrump
    Member
    Posted 3 years ago #

    Thanks - that was what I needed!
    Niels

Topic Closed

This topic has been closed to new replies.

About this Topic