Does anyone know how to change HTML with firebug?

  • Thread starter Thread starter edoedo
  • Start date Start date
E

edoedo

Guest
I have hard time to change the color like when you see:
<html>
<body>
So, I went to firebug and I try to add color like this <body bgcolor"="red"> but can't change it.
Do anyone of you know how?
I would like to hear from you.
Thank you.
 
You need to use the hexadecimal codes for color.

ff0000 is red. 0000ff is blue and 00ff00 is green. You can find color charts online for all the in between stuff. Remember numbers 0-9 and A-F are the only characters you can use.

I typically use notepad to edit my html code.
 
I change page layouts with firebug all the time. Most likely, the CSS is taking precedence over the HTML attributes. Try editing those instead.

body{
background-color: #F00;
}
 
Back
Top