Styling for html tag and admin bar in Vantage- Add Margin
This question is similar to the thread found
here.
Here is my problem: I noticed that Vantage adds about 32px worth of margin for the entire page to accommodate for the admin bar across the top. I am trying to ADD more margin to the admin bar space. The styling for the space is done in the header, and it seems like the code comes from another file in some way (using the wp_head action hook). Can somebody... ANYBODY... please tell me where to find the code that generates the styling for admin bar margin?
Here is what is in the header:
Code:
<style type="text/css" media="screen">
html { margin-top: 32px !important; }
* html body { margin-top: 32px !important; }
@media screen and ( max-width: 782px ) {
html { margin-top: 46px !important; }
* html body { margin-top: 46px !important; }
}
</style>
Any help finding the source of this code is appreciated.