Dreamweaver problem
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 posted this at 13:22 — 29th June 2004.
She has: 11,421 posts
Joined: Jun 1999
Why don't you want to use CSS? That's a simple solution.
teammatt3 posted this at 14:37 — 29th June 2004.
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?
andy206uk posted this at 16:28 — 29th June 2004.
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 posted this at 16:41 — 29th June 2004.
He has: 2,102 posts
Joined: Sep 2003
Thanks Andy works great
andy206uk posted this at 13:42 — 30th June 2004.
He has: 1,758 posts
Joined: Jul 2002
Glad I could be of service.
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.