I'm using the classic theme I want backround to be lite blue
body { #ADD8E6
background:
border: 2px solid #565;
border-bottom: 1px solid #565;
border-top: 3px solid #565;
color: #000;
font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
margin: 0;
padding: 0;
sunilm871
Member
Posted 3 years ago #
it wrks for me... put background: #ADD8E6. it will wrk
Barriss
Member
Posted 3 years ago #
look here for the blue of your dreams ---> http://heavendream.de/quick/sonstiges/colors.html
your hex for light blue #ADD8E6 wuld be correct but you did sth unnice to your code. it should be like this:
body {
background: #ADD8E6;
border: 2px solid #565;
border-bottom: 1px solid #565;
border-top: 3px solid #565;
color: #FF1493;
font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
margin: 0;
padding: 0;
}