Hey guys, I am designing a skin and am having an issue with text not coming flush to the top of a container.
Here is the html markup for one side of it:
<div id="Left_SideBar">
<div id="Left_Sidebar_Paneholder">
<div id="LeftSidebarPane" class="LeftSidebarPane" runat="server"></div>
</div>
</div>
Where you have one div to control overall placement of the sidebar as well as background. The middle div holds the content pane and can then be positioned around inside of the parent sidebar using CSS, and then of course you have the actual contentpane itself.
The issue I am having is that there is a gap at the top of the div that is there when scrolled all the way down showing the menu arrow for that module. here is a picture showing what I am talking about:
As you can see on the left there is this gap, but on the right there is not due to me scrolling the text up a bit. I was wondering if there was anyway to have the text start flush at the top at the start. It appears the issue is being caused by the menu for the module itself (which is the standard HTML module in case people were wondering).
Any help would be greatly appreciated since I have been struggling to find a fix for this particular issue. Thanks guys!