Positioning header & body of site without affecting dashboard
-
I am using Raindrops theme, but I think this question is not completely theme-specific. Raindrops was requested by the customer, and I have discovered that I really like it — mostly. But I have a problem with positioning.
The customer did not want the site description above the header, or the menu bar. I removed the site description and menu bar with the following CSS (it’s possible this was overkill, but it accomplished the removal):
.menu { display:none; } .entry-title{ display:none; } #site-title{ display:none; } #site-description { display:none; }
However, when I did this, there was a large gap above and below the header, to which my customer objected. So I added the following CSS for that:
#header-image{ position:relative; top:+21px; overflow:hidden; } body{ position:relative; top:-100px; } .lsidebar{ background:#cccbcb; margin:0; } .rsidebar{ margin:0; position:relative; left:4px; }
That added CSS accomplished the repositioning requested by the customer, but now the dashboard is messed up (including the mouse cursor position). I conclude that this repositioning affected more than I intended.
Can somebody provide a more elegant and consistent way of handling this without screwing up the dashboard display? The site is https://nichefind.com, although I plan to migrate it to the customer’s domain as soon as I can make it all play together well enough.
- The topic ‘Positioning header & body of site without affecting dashboard’ is closed to new replies.