• Resolved pallen105

    (@pallen105)


    I have created a wordpress blog (https://www.ingletonsidings.com) but want to edit my title in my header. I would like to align the title (Ingleton Sidings …it’s the layout on an ironing board) to the right of my header to allow for easier reading. I’m using the graphene theme for my blog and there is a stylesheet with html code on it ( I think!) and I thought this might be what I need to change but I don’t know.
    Thanks
    Paul

Viewing 4 replies - 1 through 4 (of 4 total)
  • Go to Appearance > Editor. Then click on the themes stylesheet (style.css) – it may already be on the screen.

    Add this to the bottom of the styles on there:

    .header_title, .header_desc {
      text-align: right;
    }

    That should send it to the right.

    Thread Starter pallen105

    (@pallen105)

    Thanks I have now managed to get it to the right but is there anyway to get it to move it along to the right even more?

    Remove width: 852px; from:

    .header_title {
        font: bold 28px "Trebuchet MS";
        left: 0;
        top: 160px;
        width: 852px;
    }

    and

    .header_desc {
        border-bottom: medium none;
        color: #000000;
        font-size: 18px;
        left: 0;
        text-align: right;
        top: 160px;
        width: 852px;
    }
    Thread Starter pallen105

    (@pallen105)

    Thanks problem solved now! ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Header Title Text Alignment’ is closed to new replies.