How Do I Change The Line Height For My H1, H2 Ttags Etc?
New Updates
In Dreamweaver, when I assign a heading tag to a word or title, it takes it out of the paragraph and moves everything else below. I undederstand why it does this- cos it thinks it should be a title.
But I want it to stay inline with the rest of the text. How do I edit this? What Type Of Header Tag Do I Use If All Page Items Are Equally Important?
I have a page where I am listing the names of a couple of different dog species. I used h1 for the page name which is "Guard Dog Species". But I don't want to use h2, h3, h4 for the actual dog species titles because that makes h2 seem more important than h3 when all the dog species names are of equa.... More »
How Much Does Site Maturity Impact Seo? Should I Register My Site Before It's Complete For Seo Purposes?
How much does site maturity impact SEO? Should I make an "under construction" page and register my site with search engines before it's up and running for SEO purposes?.... More »
What Is The Seo Opinion Of Interstitial Ads?
Does anyone have any facts or guidance on the SEO impact of using interstitial ads? They appear on a number of "big budget" sites like top-tier newspapers, magazines and video sites yet my guess is that Google and others would take a less favorable view of small sites using these ads. They are quit.... More »
im not sure how to change this in Dreamweaver, but with HTML/CSS, just add the following to the <head> section (before <body>)
First check to see if you have a CSS section:
<style type="text/css">
[insert coding]
</style>
Then in the [insert coding] section, add:
h1: { line-height:#px; }
CSS codes are applied to the entire page.
Headers are *supposed* to be… duh, headers. If you assign one of the H tags to a word or title, it will be a header.
If you want your words to stand out, wrap them inside a <span> element and apply style to that.
Give them a class, and you're good to go.
If you really WANT them to be headers (but show up inline), add
display: inline;
to both the header style and the style of the paragraph that follows it.