leggero-theme: how to "align:left"?
  • hello, i would like to have flatpress left aligned (not centered as it is usually). can anybod giv me a hint which data i hav e to modify? thanks in advance!
  • open the file common.css in fp-interface\themes\leggero\leggero\res

    find the
    /* ===== DIV CONTAINER ALL ELEMENTS BLOCK ===== */
    #body-container {
    text-align: left;
    width: 760px !important;
    width: 748px; /* fix for I.E. */
    margin: 0 auto 0 auto;
    padding: 5px;
    border: solid 1px #ccc;
    background-color: white
    }

    and change it so
    /* ===== DIV CONTAINER ALL ELEMENTS BLOCK ===== */
    #body-container {
    float: left;
    text-align: left;
    width: 760px !important;
    width: 748px; /* fix for I.E. */
    margin: 0 auto 0 auto;
    padding: 5px;
    border: solid 1px #ccc;
    background-color: white
    }


    (add "float: left;")
  • hey lantaca, thanks a lot! i appreciate you help
This discussion has been closed.
All Discussions

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion