Search code examples
cssalignment

Align on left does not works


If you check my website in the German version, for example, everything is aligned on left. But this does not works on English or French version. Infact the section that start with "For all your asset" looks like floated on right, but is not. The code is the same for all the version. Can i fix it?


Solution

  • Your sections Stage, Solutions and Approach are floated to the left. The problem is that this float is not cleared after the elements.

    In this specific case you can use the following CSS to clear it:

    #services {
        clear: both;
    }
    

    The reason why the problem doesn’t appear in the German version is that there the right section is longer than the other ones. In the English version the middle section is longer and produces the problem.