Search code examples
cssheaderbloggerblogspotblogger-dynamic-views

blogger "dynamic views" header css


As you can see the header for my blog https://blog.cryformeqq.icu currently has drop shadow for the title, plus there's this weird gradient on top of the background color (which is supposed to be the same as the lighter grey under the navigation bar)

Anyone have any ideas? I tried a bunch of stuff I found online, none if it worked though.


Solution

  • Get rid of this style to get rid of the gradient: #header .header-bar { background-image: -moz-linear-gradient( center top, rgba(255, 255, 255, 0.1), rgba(100, 100, 100, 0.05) ); background-image: -webkit-gradient( linear, left top, left bottom, from(rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0.05)) );. Delete #header .header-bar .title h1 { text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3); } to get rid of the text shadow.

    Or overwrite with header .header-bar .title h1 { text-shadow: none; } and #header .header-bar { background-image: none; }