Not my fault this time. Here is the source of the file Lift_off.html:
Code:
<div id="definition">
<h2>Achieving Lift Off</h2>
<h2>Allan Wilson</h2>
<p class="=definition">
"I'm stunned!.. This ebook is an aggregation of some of the most powerful marketing techniques being used on the Internet today not just by myself but other Internet Marketing Experts as well! Everything contained in this manual is enough to help anyone earn thousands per month on the internet. It's just up to you to do it. Highly recommended!" How To Make Your Own Ebooks Take The Short-Cut To Success With Reprint Rights Maximise Your Profits From Affiliate Programs How To Create Your Own Website Two Horror Stories About Webhosting and How You Can Avoid Them Discover How Easy It Is To Have A Third Party Merchant Account You Must Use Pay Per Click Search Engines You Must Build An Email List and Follow Up Your Contacts You Must Have Good Customer Service Free Traffic Generators To Get You Started How To Learn More About Internet Marketing Action Plan If You Are Completely New Action Plan For The More Experienced We Present a Summary of All The Expert Advice We Reveal the Best Multi Level Marketing Programs
</p>
</div>
</body>
</html>
There is nothing on there that would qualify for:
Code:
.definition p{
border-width:1px;
text-align: left;
background-color:gray;
}
If you made it:
Code:
#definition p {
border-width:1px;
text-align: left;
background-color:gray;
}
or changed:
<p class="=definition">
to:
Code:
<p class="definition">
and made it:
Code:
p.definition {
border-width:1px;
text-align: left;
background-color:gray;
}
Either way it would work. The styles are being loaded. But the border will still have no effect because there is no style or color defined.
And, edit your external.css file in a plain text editor, it is being saved in an odd format that might also be causing some problems. It currently looks like:
at least the beginning of it does, the editor here wouldn't even allow me to paste the rest of the characters.
Bookmarks