diff --git a/public/internal/footer.php b/public/internal/footer.php index c787bdb..6ded459 100644 --- a/public/internal/footer.php +++ b/public/internal/footer.php @@ -12,7 +12,7 @@ function getFooter(){ while ($row = $result->fetch_assoc()) { $title = $row["title"]; $id = $row["id"]; - $newestPost .= "$title
"; + $newestPost .= "
  • $title
  • "; } } @@ -29,7 +29,9 @@ function getFooter(){

    Neueste Beiträge:

    - $newestPost +

    diff --git a/scss/_footer.scss b/scss/_footer.scss index cfcf902..e25c33c 100644 --- a/scss/_footer.scss +++ b/scss/_footer.scss @@ -54,4 +54,14 @@ footer{ height: 5px; width: 100%; background-color: $content-footer-div-color; +} + +#newestPost{ + ul { + list-style-type: none; + padding-left: 0; + } + li { + margin-bottom: 10px; + } } \ No newline at end of file