• Ok so I wanna add a time and date widget and social icons to my header, the problem is when I add the widgets they are poistioned in the mid part of the right side of the header and my site title moves from middle to the left. I want to have my social icons on the bottom of the right side and the date and time in the middle under or on the top of the site title, and I wanna keep the site title in the middle.
    the site: https://www.kumtesa.com
    and also im using the genesis framework and the Newspro child theme. Thanks in advance.

Viewing 2 replies - 1 through 2 (of 2 total)
  • You could do something like this:

    in the style.css add

    div.socialicons
    {
        position:absolute;
    	top:74px;
    	left:1650px;
            width:85px;
    	height:88px;
    }

    you can play around with the values until they are at the right place.

    and to the header.php add

    <div class="socialicons">
    YOUR CONTENT HERE</div>

    Make sure the name after the .div in the css is the same as name in the headers <div class=”…”>

    Thread Starter rdunikk

    (@rdunikk)

    Doesn’t change anything. My header moves to the left whenever I add a widget to the header.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Adding widgets on the header’ is closed to new replies.