|
Posted by Beauregard T. Shagnasty on 02/11/06 21:31
canadafred wrote:
> I have considered that, but haven't gone around to learn how to adapt this
> yet. Unfortunately I am hesitant to incorporate to much CSS as frequently
> CSS is used in "black hat" SEO.
So long as you don't use the CSS to bury and hide keywords (from the
visual appearance) there is no problem using it.
> I don't like having more than one linked style sheet and when I use
> it, I keep it basic. I also don't like using <div> tags, this stems
> from way back, and they play such an important role in replacing
> <table>s.
....tables for layout. <g>
> But I have to change. It is not easy for me.
It does take a mindset change (using CSS layout). Once I saw how much
less congested a page was, I was hooked.
> Like I said at first, there are some things that have worked for me
> throughout the years in SEO that I have a hard time changing. This
> particular site, I should try new things. I am a couple of
> generations behind in design, I should take the time to catch up.
<body>
<div id="banner"
<img (banner stuff) >
</div>
<div id="content">
<h1> (main heading) </h1>
<p> ... </p> etc
<h2> sub-heading </h2>
<p> ... </p>
</div>
<div id="navigation">
<ul>
<li><a href-"thispage.html">This page</a></li>
<li><a href-"thatpage.html">That page</a></li>
</ul>
</div<
<div id="footer">
<p>Copyright by ... </p>
</div>
</body> ...
...and then a bit of CSS to style and position these id's
--
-bts
-Warning: I brake for lawn deer
Navigation:
[Reply to this message]
|