kitty's profile picture

Published by

published

Category: Web, HTML, Tech

i need help again

can someone give me a specific coding or link to a coding that changes the blue header color on the top??

the one that says "home | browse | search" etc..ย 

ive been struggling with changing it latelyย loll


1 Kudos

Comments

Displaying 1 of 1 comments ( View all | Add Comment )

Ikoe

Ikoe's profile picture

It seems you just forgot a handful of semicolons on your background-image declarations. These are necessary, because under CSS' syntax, they close whatever you're inputting / declaring. To demonstrate, here's a fix for nav .links, the header/bar you've asked about:

nav .links {
background-image: url('http://dl7.glitter-graphics.net/pub/153/153617fwnbu4h8qu.gif');
border: 2px dotted #FFFFFF;
}

Be sure to plop a semicolon at the end of all the other erroneous background-image declarations while you're at it. By my count, you've got five ("#q, button", nav .top, the aforementioned nav .links, main, and footer).


Report Comment



omg thank you SO SO SO MUCH you dont know how thankful i am for this!!! ๐Ÿ’•๐Ÿ’•๐Ÿ’•๐Ÿ’•๐Ÿ’•

by kitty; ; Report

Happy to help! Hope this inspires you to delve into CSS a little more. ^^

by Ikoe; ; Report