Archived topic
Hook Above Both Left & Right Sidebar
7 replies · Started by Clayton on June 6, 2019
Hey guys,
I'm wondering if there is a hook I can access to insert some content above both the left and right sidebars. If so I can just use the Elements feature to insert what I need before both sidebars. In my case the sidebars with both be on the right side.
Thanks
Hi there,
this Visual Guide shows you where all the main content hooks are, and yes one for each sidebar:
I'm trying to put content above both sidebars. In other words the width of the left and right sidebar together.
Screenshot: https://imgur.com/a/1fprmpK
You would probably have to use the inside_container hook wrap your content in a DIV and then throw some CSS at it to float it right and set its width.
I'll give that a shot. Thanks David.
You're welcome - let us know how you get on.
For others who might bump into the same thing. I just wrapped my content in a div and applied the following style.
text-align: center;
margin-top: 20px;
width: 35%;
float: right;
You'll need to tweak on mobile and based on your needs but it works pretty well overall.
Thanks for the feedback and sharing your solution.