
Originally Posted by
Doodlebuckets
Sorry, I do try to be useful sometimes
www.loves2nurse.com
front page:under
When should you contact a Certified Lactation Consultant?
the list should be bulleted.
Looks fine in the html editor, but doesn't display properly in the browser. The text looks a bit larger too.
Thanks!
A couple of things I notice (after checking the page source)
first: the bullet list:
Code:
<br>
<br>
<div style="text-align: center;"
font-family="" script="" mt="" bold=""
class=""><big><big><big><big><span
style="font-family: Script MT Bold;">Loves
2 Nurse, PLLC
</span></big></big><br>
<br>
Offers lactation services by providing visits by a board certified
lactation consultant to your home or my office, which includes the
following: Baby weight check, history, assessment, breastfeeding
consultation, lactation interventions as needed, breast pumps are
available for rent or sale as are breastfeeding accessories.</big><br>
<br>
<big><span
style="font-weight: bold;">When
should you contact a Certified Lactation Consultant?</span><br>
</big></big></div>
<ul>
<li><big><big>To
learn more about
breastfeeding</big></big></li>
<li><big><big>If
breastfeeding is painful</big></big></li>
<li><big><big>Latching
or sucking
difficulties</big></big></li>
<li><big><big>Sore
nipples after one week
of nursing</big></big></li>
<li><big><big>Breast
surgeries:
augmentations or reductions</big></big></li>
<li><big><big>Breast
infections including
yeast or mastitis or plugged ducts</big></big></li>
<li><big><big>Premature
baby</big></big></li>
<li><big><big>Twins
or multiple babies</big></big></li>
<li><big><big>Sleepy
and difficult to feed
baby</big></big></li>
<li><big><big>Previous
history of
breastfeeding difficulties</big></big></li>
<li><big><big>Baby
that requires supplementation of breast milk or formula for weight loss
or jaundice, consider renting a hospital grade pump</big></big></li>
</ul>
<div style="text-align: center;"><big>
</big>
<h1 style="font-family: Script MT Bold;"><big>Please
call Michelle Janyska</big></h1>
<big><big><big>(919)
830-4188<br>
<br>
</big>Top Breastfeeding News:</big></big><big><big><big></big></big></big></div>
<big><br>
</big>
I'd get rid of ALL those inline styles and just add something like the following to the stylesheet.css or create an index_home.css with the following declarations
#consultant ul {
display:block;
list-style-type: disc;
}
You can then have something like this:
Code:
<div id="consultant">
<ul>
<li>To learn more about breastfeeding</li>
<li>If breastfeeding is painful</li>
<li>Latching or sucking difficulties</li>
<li>Sore nipples after one week of nursing</li>
<li>Breast surgeries: augmentations or reductions</li>
<li>Breast infections including yeast or mastitis or plugged ducts</li>
<li>Premature baby</li>
<li>Twins or multiple babies</li>
<li>Sleepy and difficult to feed baby</li>
<li>Previous history of breastfeeding difficulties</li>
<li>Baby that requires supplementation of breast milk or formula for weight loss or jaundice, consider renting a hospital grade pump</li>
</ul>
</div>
second: is a problem with the scrolling section of the main page.
You've got duplicate <html><head></head><body></body></html>
See below:
Code:
<!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" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
/*Example CSS for the two demo scrollers*/
#pscroller1{
width: 650px;
height: 1.2em;
border: 1px dashed black;
padding: 5px;
background-color: lightyellow;
}
#pscroller2{
width: 650px;
height: 200px;
border: 1px solid black;
padding: 5px;
background-color: #F0F0F0;
}
.rssclass .rsstitle{
font-weight: bold;
}
.rssclass .rssdate{
color: gray;
font-size: 85%;
}
.rssclass a{
text-decoration: none;
}
</style>
<script type="text/javascript" src="rsspausescroller.js">
</script>
</head>
<body>
<script type="text/javascript">
//new rsspausescroller(RSS_id, divId, divClass, delay, linktarget, optionalswitch)
//1) RSS_id: "Array key of RSS feed in scrollerbridge.php script"
//2) divId: "ID of DIV to display ticker in. DIV is dynamically created"
//3) divClass: "Class name of this ticker, for styling purposes"
//4) delay: delay between message change, in milliseconds
//5) linktarget: Target of links inside RSS feed. Set to "" for current page.
//6) optionalswitch: "optional arbitrary" string to create additional logic for formatrssmessage() to use.
// By default, optionalswitch supports "date", or "date+description" to also show these parts of a RSS feed.
new rsspausescroller("dynamicdrive", "pscroller2", "rssclass", 3000, "", "date+description")
</script>
</body>
</html>
Bookmarks