Click to See Complete Forum and Search --> : html help in footer


clicker64
03-14-2009, 10:23 AM
I am brand new to building websites and my first site is a WP blog (http://www.BetterGolfSpot.com).
I would like to add a privacy policy to my footer but I really don't know exactly where or how to put it in. I assume I will need to paste the actual post of the privacy page too.

Whatever is better, html or CSS (which I know less about that html), I would appreciate someone to point me in the right direction

Thanks in advance

<div id="footer">
<p class="klein">
<a title="Wordpress 2.7.1" rel="nofollow" href="http://wordpress.org/">Wordpress</a>
</p>
</div>
</div>
<div class="IEclearer">
</div>
</div>
</div>
</body>
</html>

gavshouse
03-14-2009, 11:42 AM
ok well, html is what you put your content in then css is the formatting and styling so you use them both. just try this

Replace this
<div id="footer">
<p class="klein">
<a href="http://wordpress.org/" rel="nofollow" title="Wordpress 2.7.1">Wordpress</a>
</p>
</div>

With this
<div id="footer">
<p class="klein">
<a href="http://wordpress.org/" rel="nofollow" title="Wordpress 2.7.1">Wordpress</a> |
privacy policy bit here
</p>
</div>

or if your wanting a link to the page
With this
<div id="footer">
<p class="klein">
<a href="http://wordpress.org/" rel="nofollow" title="Wordpress 2.7.1">Wordpress</a> |
<a href="http://YOUR LINK TO IT/" title="Pirvacy Policy">Privacy Policy</a>
</p>
</div>

clicker64
03-14-2009, 12:16 PM
Thank you Gavshouse.
Do I need to put a tag on the body of the article I am linking to?
<div id="footer">
<p class="klein">
<a href="http://wordpress.org/" rel="nofollow" title="Wordpress 2.7.1">Wordpress</a> |
<a href="http://YOUR LINK TO IT/" title="Pirvacy Policy">Privacy Policy</a>
<p text="Blah blah blah"</p> ??< just asking a question. Not text for example.