From dbfaed31eac94aeb5fd84fd4d1b342691644ea9c Mon Sep 17 00:00:00 2001
From: Rambaud Pierrick <12rambau@users.noreply.github.com>
Date: Fri, 3 Mar 2023 15:23:28 +0100
Subject: [PATCH] docs: remove legacy footer customization
---
docs/user_guide/layout.rst | 23 -----------------------
1 file changed, 23 deletions(-)
diff --git a/docs/user_guide/layout.rst b/docs/user_guide/layout.rst
index 1b5d67e42..e021146b6 100644
--- a/docs/user_guide/layout.rst
+++ b/docs/user_guide/layout.rst
@@ -463,29 +463,6 @@ If you'd like them to stack **horizontally** use a custom CSS rule like the foll
flex-direction: row;
}
-Change footer display
----------------------
-
-Each footer element is wrapped in a ``
`` with a ``footer-item`` class, allowing you to style the structure of these items with custom CSS.
-
-For example, by default the footer items are displayed as blocks that stack vertically.
-To change this behavior so that they stack **horizontally**, add a rule like the following in your custom ``.css`` file.
-
-.. code-block:: css
-
- /* Make each footer item in-line so they stack horizontally instead of vertically */
- .footer-item {
- display: inline-block;
- }
-
- /* Add a separating border line for all but the last item */
- .footer-item:not(:last-child) {
- border-right: 1px solid var(--pst-color-text-base);
- margin-right: .5em;
- padding-right: .5em;
- }
-
-
Built-in components to insert into sections
===========================================