Viewing 5 replies - 1 through 5 (of 5 total)
  • Open the browser inspector (hit Ctrl + Shift + i), and find the id attribute of the sidebar. Then address that element in your stylesheet.

    Let’s say the id is language-switcher, then you write in your CSS:

    #language-switcher {
        float: right;
    }
    Thread Starter kenwkm

    (@kenwkm)

    my id is language-switcher, so I write the above code to my CSS but nothing change.

    Please use your browser’s inspector to see which CSS rules are actually used. Some themes use a compressed and a normal stylesheet, changes in the normal stylesheet are not used then. Or there is another CSS rules with a higher importance that overwrites your changes.

    Thread Starter kenwkm

    (@kenwkm)

    Finally figure out what you mean and it works. Thank you.

    Good to read that! Thank you for the feedback, and good luck with your web site. 🙂

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

The topic ‘position language switcher’ is closed to new replies.