Dreamweaver problem

teammatt3's picture

He has: 2,102 posts

Joined: Sep 2003

I don't know if this is possible or not, I want to have a title in times font with H4 size, and right below that, NOT Another space below, another title with veranda font and H6 size, is this possible, without making a new table or any css stuff? I can't seem to get it working right in dreamweaver.

Megan's picture

She has: 11,421 posts

Joined: Jun 1999

Why don't you want to use CSS? That's a simple solution.

teammatt3's picture

He has: 2,102 posts

Joined: Sep 2003

I want to avoid it because it confuses me, but ok how do I do it with CSS?

He has: 1,758 posts

Joined: Jul 2002

h4 {
    padding: 0;
    margin: 0;
}
h6 {
    padding: 0;
    margin: 0;
    font-family: Verdana, Arial, sans-serif;
}
'

or you could use inline styles, but it would kinda defeat the point of css:

<h4 style="padding: 0;margin: 0;">H4 TITLE</h4>
<h6 style="padding: 0;margin: 0;font-family: Verdana, Arial, sans-serif;">H6 TITLE</h6>
'

Andy

teammatt3's picture

He has: 2,102 posts

Joined: Sep 2003

Thanks Andy works great

He has: 1,758 posts

Joined: Jul 2002

Glad I could be of service. Wink

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.