I could use some advice on how to mark-up and style a short Question.
Here is my code...
Code:
<!-- Today's Topic -->
<div id="boxTopic">
<h2>What is an<br /><big>S-Corporation?</big></h2>
<a href="">(Learn more here)</a>
</div>
and...
Code:
/* TOPIC Styles */
#boxTopic{
padding: 1.5em;
text-align: center;
}
#boxTopic h2{
line-height: 1.6em;
text-align: center;
color: #F00;
}
#boxTopic big{
font-size: 1.3em;
}
In another thread last week, Stomme poes told me...

Originally Posted by
stomme poes
Click here is a link who only has meaning when it's within its context, which is why we try to avoid it.
Google's search results for "click here bad" where they tell you why.
I'd rewrite that last sentence so the important meaning of the link in the link text. Like "learn how Pamela went from homemaker to business owner" as the link text, and expand the rest of the sentence as you want.
Stomme made a good point, but my current problem is somewhat different and I'm not so sure how to handle the above example.
I think the bold red text helps the Question in the box above jump out, which is exactly what I want. (See my test site: http://www.doubledee.byethost2.com/)
If I make the hyperlink below it "useful", then it would likely be redundant to the original question. For example...
What is an S-Corporation?
(Learn more about S-Corporations here)
Another option would be to make the question itself a hyperlink, but then that leads me to some questions...
1.) Could I have a bold, red hyperlink like this...
What is an S-Corporation?
2.) Should I make my Question just an <a>...
Code:
<a href="">What is an S-Corporation?</a>
Or can I nest it in a Heading since it leads to an Article and thus is the Article's Title...
Code:
<h2><a href="">What is an S-Corporation?</a></h2>
Thanks,
Debbie
Bookmarks