Boxentitel Trennlinie einfügen

    • Offizieller Beitrag

    Um Die Boxen voneinander zu trennen kann eine Horizontale Linie unter dem Boxentitel eingefügt werden.

    Code: BOXENTITEL IN DER SIDEBAR LINKS UND RECHTS
    /* Abtrennung der Boxentitel */
    .boxesSidebarLeft .boxTitle, .boxesSidebarRight .boxTitle {
        border-bottom: solid #2c68a5;
    }
    Code: ALLE BOXENTITEL ANPASSEN
    /* Abtrennung der Boxentitel */
    .boxTitle {
        border-bottom: solid #2c68a5;
    }
    Code: LINIEN DICKE 1 PIXEL - SIDEBAR BOXEN
    /* Abtrennung der Boxentitel mit Trennlinie 1Pixel Stärke */
    .boxesSidebarLeft .boxTitle, .boxesSidebarRight .boxTitle {
        border-bottom: solid 1px #2c68a5;
    }
    Code: LINIEN DICKE 1 PIXEL - ALLE BOXEN
    /* Abtrennung der Boxentitel mit Trennlinie 1Pixel Stärke */
    .boxTitle {
        border-bottom: solid 1px #2c68a5;
    }