For artists and collectors sponsored by Intercal...your mohair supplier and Johnna's Mohair Store
How would I get the font size increased in this title? And where to I put the qualifiers for just this title?
<b>
<b>STARGAZING
<b>
</b>
the rest of the code, referring to size, is written like this:
<div style="font-family: Comic Sans MS,Verdana,Arial,sans-serif; font-size: large;">
<script language="JavaScript">
You can see why that doesn't give me a clue as to what to put in for a Title font size. Or where to designate a size
If I had to make a guess, according to other auctions I've had built in the past, I'd say the 'large' text is in now font-size 4 (out of 1 to 6)
I've been working on this auction for over a week; this one is worse than giving birth!!
T I A!!!
I write my website by hand, but I do it very simply. You've got a bunch more stuff in there than I'm used to...
For the font size.. here's an example of what I use: font-size: 12pt
Also a note ... eBay no longer allows java script so you'll want to take out the <script language="JavaScript">
Hi Bobbie
I see you are using some CSS div tags. One way of achieving what you want is to use a heading tag and then redefine it using CSS. In the example below, I have used an h2 heading, but you could use h1 instead. The web browser will resize the text enclosed by h1 and h2 tags according to its own set of rules, but you can redefine those rules by using the example coding below in the head section of your webpage. I'm not sure how much html you already know, but let me know if you need more detail.
Regards
Sue
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
h2 {
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
font-weight: bold;
}
-->
</style>
</head>
<body>
<h2>Stargazing
</h2>
</body>
</html>