• Here’s a link to my site: http://anshumansinha.in
    Look at the floating bar at the top. It overlaps the logo of the site, which really looks ugly. I know I gotta edit the CSS somewhere, but can’t exactly figure it out. I just want the bar to stay at top without overlapping the logo, and also float all along.

    Please help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • How about:

    #head-content {
    margin: 32px auto 0;
    padding: 10px;
    position: relative;
    min-height: 60px;
    z-index: 98;
    }

    and

    #catnav {
    position: fixed;
    width: 100%;
    margin: 0 auto;
    z-index: 999;
    top: 0;
    }
    Thread Starter Anshuman

    (@likelylife)

    Nice try. But still no avail. The title now overlaps the fixed-positioned bar. I want it kinda like the WordPress Admin toolbar. Maybe a bit of JavaScript needed here?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Help with a Bit of CSS’ is closed to new replies.