diff options
author | Mario <mario@mariovavti.com> | 2024-06-27 19:23:00 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-06-27 19:23:00 +0000 |
commit | 26cb32612d275bd4f44d8bdf2c9da3e6e535b1ed (patch) | |
tree | 3c2ca1a936c19962cff2b02107a7a8c88ce9d343 | |
parent | 7028e075350e9f1d16bcd6b9785f573937aa8f8c (diff) | |
download | volse-hubzilla-26cb32612d275bd4f44d8bdf2c9da3e6e535b1ed.tar.gz volse-hubzilla-26cb32612d275bd4f44d8bdf2c9da3e6e535b1ed.tar.bz2 volse-hubzilla-26cb32612d275bd4f44d8bdf2c9da3e6e535b1ed.zip |
fix display issue for doubleleft template
-rw-r--r-- | view/php/doubleleft.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/php/doubleleft.php b/view/php/doubleleft.php index 2d1571bf8..97b1546dc 100644 --- a/view/php/doubleleft.php +++ b/view/php/doubleleft.php @@ -23,7 +23,7 @@ <main> <div class="content"> <div class="columns"> - <aside id="region_1"><div class="aside_spacer_top_left"></div><div class="aside_spacer_left"><div id="left_aside_wrapper" class="aside_wrapper"><?php if(x($page,'aside')) echo $page['aside']; ?></div></div></aside> + <aside id="region_1" class="d-none d-lg-block"><div class="aside_spacer_top_left"></div><div class="aside_spacer_left"><div id="left_aside_wrapper" class="aside_wrapper"><?php if(x($page,'aside')) echo $page['aside']; ?></div></div></aside> <section id="region_2"><?php if(x($page,'content')) echo $page['content']; ?> <div id="page-footer"></div> <div id="pause"></div> |