Title and footer alignment

Home Forums Omega Title and footer alignment

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1433
    hongjiho
    Participant

    Hi Han,

    I’m love your omega theme. By the way I’ve got two questions regarding alignment.

    1) Title alignment
    I’d like to align the main title to the left always regardless of the screen width. Theme default is center.

    2) Footer text alignment
    And I don’t want footer texts (copyright and themehall) to be center-aligned in the smaller screens.

    Could you let me know how I can tweak the CSS for these?

    Thanks in advance.

    #1453
    han
    Keymaster

    Hi, go to Appearance > Customize > CSS, and try add this

    .site-header, .site-footer {
        padding-left: 5%;
        padding-right: 5%;
    }
    .site-container .title-area {
        text-align: left !important;
    }
    .site-footer {
        text-align: left;
    }
    p.copyright {
        float: left !important;
    }
    p.credit {
        float: right !important;
    }
    
    #1474
    hongjiho
    Participant

    Thanks Han! You really saved me.

    I just added one thing (.site-title) to your solution like below and it works as I wished.

    .site-container .title-area .site-title {
    text-align: left !important;
    }

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

You must login to reply to this topic.