Moving header widget to the right side and down

  • herbalist

    #9479

    I am trying to move a header widget over to the right and down a little. I have been trying a lot of different coding in the CSS column but nothing is getting the right location. I would like to put it under the phone number on the right in the header column. Thanks!

    http://www.4brancheschinesemedicinecenter.com

    Anonymous

    #43690

    Like this?

    https://cdn.anonfiles.com/1414181475443.png

    .textwidget {
    right: 0px;
    top: 40px;
    }

    It could also be #textwidget but I’m not sure about that.

    Anonymous

    #43691

    Read this: https://forum.graphene-theme.com/graphene-support/header-widget-position

    It should be,

    #header .sidebar-wrap {
    float: right;
    }

    So on… add parameters to edit as you wish. You may also visit my site. I just added a “Help me find a Job” button at the top.

    Anonymous

    #43692

    To be specific, this is what I used. Change the parameter values to move where ever you want on yours.

    #header .sidebar-wrap {
    float: left;
    position: absolute;
    top: 70px;
    left: 70px;
    z-index: 50;
    }

    herbalist

    #43693

    Thank you so much for your suggestions. This last one was perfect – I made some small changed to the location on the right but the coding worked perfectly . This is what I used:

    #header .sidebar-wrap {

    float: right;

    position: absolute;

    top: 45px;

    right: 10px;

    z-index: 50;

    }

    Many thanks to everyone who took time to respond.

Viewing 5 posts - 1 through 5 (of 5 total)

  • You must be logged in to reply to this topic.