View Full Version : a way of disguising the <H1> Tag


inzane
08-30-2004, 05:29 AM
Is there a way of disguising the <H1> Tag so I can apply formatting to text that the spiders wont notice.
My seo software says the spiders dont like formatting?

Thanks
Tim.

seo_sensey
08-30-2004, 05:34 AM
Use CSS into an external style sheet.

inzane
08-30-2004, 06:06 AM
ok thank you.

CMA
08-30-2004, 06:06 AM
Another question ist, which seo software you are using? Spiders like h1 and all other types of formating when they are not overused.
But, as h1tags often are not really nice to look at, use CSS as sensey said, it is a nice way to make the h1 and other tags look nice and fit into your current design.
Greetings
David

Freakindj
08-30-2004, 06:15 AM
I thought Spiders like H1 tags too. Even more so if the correspond with you site description and meta tags.

trick is not more then H3

inzane
08-30-2004, 08:02 AM
It was a web link tool that showed
"H1 Tag is not used or not in 'clean' format (ie < H1 >). It is very important to do so."

I got it from http://optimiser.123promotion.co.uk/

I then went back and made my text CSS but I still got the same response.
When I made it into 'clean' text again just using <H1> the same tool gave the all clear response.

jlknauff
08-30-2004, 09:27 AM
Is it a very particular look that you are trying to achive or are you just trying to dress up the H1 a bit?

inzane
08-30-2004, 09:37 AM
dressing up i guess. I was wondering about that Search Engine Optimizer, and why it would say i shouldnt format tha H1, getting a few bits of conflicting information from various places now. Why is that?

I left my text css anyway, it looks ok.

Thanks Tim.

jlknauff
08-30-2004, 09:44 AM
take a look at the h1 on this site
www.jeremy-lang.com

eduardomaio
08-30-2004, 10:04 AM
Is there a way to make <h1> tags don't break the line? What I mean is, lets suppose you have this code

<h1>Some Text</h1> (www.mysometextsite.com)

This will show on your page like this

Some Text
(www.mysometextsite.com)

Is it possible, using css, that my text appears like

Some Text (www.mysometextsite.com)

If it is possible please tell me how, I really need it for my website www.eduardomaio.net (http://www.eduardomaio.net) in the Portfolio (http://www.eduardomaio.net/portfolio.php) section.

seo_sensey
08-30-2004, 11:53 AM
try display: inline;

eduardomaio
08-30-2004, 12:35 PM
Thanks seo_sensey, it works!