Help with Dreamweaver CS5

fallenapples

In Runtime
Messages
386
Location
Toronto, Ontario
I am trying to edit the HTML font separately. I insert a new h6 tag, select it and when I change the font size it affects the entire page. How can I edit the selected HTML text rather than the CSS?
 
If you want to customize the h6 tag with CSS, all you need to do is target it with CSS

Code:
h6 {
    /* your CSS attributes here */
}
 
Back
Top Bottom