• iNadav

    (@inadav)


    Hey,
    I was wondering how am I supposed to make my Header Menu Bar be aligned to the right
    instead of the left (the default option that comes with the theme I am using)
    The theme I’m using is called Vantage, the website is currently under the address : https://spotifysolutions.wc.lt/
    – I’m basically interested in doing that since I’ve translated the theme and the language I’m currently using is written from right to left (and not left to right like English)

    Thanks, Please help & Take care, Best Regards
    -Nadav

Viewing 3 replies - 16 through 18 (of 18 total)
  • Thread Starter iNadav

    (@inadav)

    Do you know how can I move my soical links to the right and the logo to the left? (switch them)

    Your logo is already floated to the left and the social icons to the right. Perhaps you want the social icons to be on the left and the logo on the right?

    If this is the case, find the following styles in the style css:

    header#masthead .hgroup .logo

    and

    header#masthead .hgroup #header-sidebar

    and replace their parameters with these:

    header#masthead .hgroup .logo {
        display: block;
        float: right;
        max-width: 100%;
    }
    header#masthead .hgroup #header-sidebar {
        padding-top: 15px;
        padding-bottom: 15px;
        height: 100%;
        position: absolute;
        left: 0px;
        top: 0px;
        box-sizing: border-box;
        -moz-box-pack: center;
        -moz-box-align: center;
        display: -moz-box;
        float: left;
    }

    Make a copy of your style.css file before you attempt the changes!

Viewing 3 replies - 16 through 18 (of 18 total)
  • The topic ‘Aligning the Menu (Header Menu Bar)’ is closed to new replies.