Yes. This extension works on 3.3.14. I have it installed now.DereckSmith wrote: Mon Jan 20, 2025 6:16 pm Has anyone used it in phpBB 3.3.14? The demo link provided there is not working.
Are you OK to share the link?Yes. This extension works on 3.3.14. I have it installed now.
Link to what?DereckSmith wrote: Mon Jan 20, 2025 8:38 pmAre you OK to share the link?Yes. This extension works on 3.3.14. I have it installed now.
I looked at your site https://pikniktv.top/. The sidebars are exactly what I am looking for. Thank you!Link to what?
I got this:Mannix_ wrote: Mon Jan 20, 2025 6:56 pm This post should still work viewtopic.php?p=14085556#p14085556
I have this extension slightly modified. My side blocks are fixed on the screen. They do not scroll with the page. In the original extension, the blocks are hidden when scrolling.DereckSmith wrote: Tue Jan 21, 2025 12:19 amI looked at your site https://pikniktv.top/. The sidebars are exactly what I am looking for. Thank you!Link to what?
I don't show the extension code. And the author of this extension hasn't answered questions for over a year.Anișor wrote: Tue Jan 21, 2025 10:55 am Keep in mind this is a paid extension and we don't have access to its code to guide you.
Better ask the extension author on the 3rd party website you purchased the extension from.
You gonna need to do this instead:DereckSmith wrote: Tue Jan 21, 2025 12:54 am
The sidebars are taking space from the content area. How to move the sidebars to the outer area (in gray color marked by the arrows), and have the Google AdSense ads sticky (staying there as the page scrolls up/down)?
Code: Select all
<!-- EVENT overall_header_body_before -->
Code: Select all
<div class="sidebar-wrapper">
<div class="sidebar-left">Left Sidebar Code</div>
Code: Select all
<div>
<a id="bottom" class="anchor" accesskey="z"></a>
{% if not S_IS_BOT %}{{ RUN_CRON_TASK }}{% endif %}
</div>
Code: Select all
<div class="sidebar-right">Right Sidebar Code</div>
</div>
Code: Select all
.sidebar-wrapper {display: flex;gap: 10px; align-items: start;}
.sidebar-left {width: 250px;flex-shrink: 0;position: sticky; top: 0;}
.sidebar-right {width: 250px;flex-shrink: 0;position: sticky; top: 0;}
I applied the changes. The two sidebars show up as expected.
I tried "phpBB 3.2 / 3.3 Sidebar Extension - Responsive", could not make it to show the sidebars. Have not received a response for support. I disabled it in order to try other approaches.Anișor wrote: Tue Jan 21, 2025 10:55 am Keep in mind this is a paid extension and we don't have access to its code to guide you.
Better ask the extension author on the 3rd party website you purchased the extension from.
.sidebar-wrapper
add
Code: Select all
margin-inline: auto;
--sidebar-width: 150px;
max-width: calc(1152px +(var(--sidebar-width)* 2));
.sidebar-left
and .sidebar-right
change width value to var(--sidebar-width)
and make sure both have position: sticky;
and top: 0;
The "sticky" part is working now. Thank you!Mannix_ wrote: Tue Jan 21, 2025 7:06 pm You didn't follow the instructions. Some of the css is missing the sticky part won't work without it![]()
But i also forgot something on.sidebar-wrapper
addthen inCode: Select all
margin-inline: auto; --sidebar-width: 150px; max-width: calc(1152px +(var(--sidebar-width)* 2));
.sidebar-left
and.sidebar-right
change width value tovar(--sidebar-width)
and make sure both haveposition: sticky;
andtop: 0;