In the layout I have designed, there is a header followed by a jQuery Tab navigator. The tabs have padding on the left side, and I want the header image to overlap this area. Currently, the image is hidden behind the tab panel. Which CSS property can be used to ensure that the image is not hidden? Here is an example on Fiddle Link
I attempted using `
.logo
{
float:left;
height:50px;
padding-left: 1em;
padding-right:1.5em;
z-index: 5;
}`
, but it did not produce the desired result. Thank you for addressing this issue.