Bit of paragraph code that's throwing my site positioning off? - html

I'm stumped about something, a bit of code that every time I place at the bottom of my site throws my site slightly to the right, which makes it jarring when going from that page to another, you can see the nav panel jumping to the right, etc.
I'm an amatuer at this stuff, designing my own artist website. Any suggestions as to why when I place this in. Appreciate any help!
This is the code causing this shifting:
<div class="copyright">
<p>
COPYRIGHT ©2017 WILSON SCHLAMME, ALL RIGHTS RESERVED
</p>
</div>
and this is on the css page: *note removing this css still doesn't alleviate the shifting.
.copyright {
font-size: 51%;
color: #a6a6a6;
letter-spacing:1px;
padding-bottom:20px;
font-family: "Proxima Nova", Palatino Linotype, Book Antiqua, Palatino,
serif;
}
And this is the entire code:
* {
margin: 0;
padding: 0;
}
body {
text-align: center;
/*For IE6 Shenanigans*/
font-family: Verdana, Geneva, sans-serif;
color: black;
}
.bio {
color: #808080;
line-height: 160%;
line-spacing: 40%;
max-width: 700px;
font-family: "Proxima Nova", Palatino Linotype, Book Antiqua, Palatino, serif;
margin: 0 auto;
text-align: left;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
font-size: 48%;
font-family: "Proxima Nova", Palatino Linotype, Book Antiqua, Palatino, serif;
letter-spacing: 2.5px;
word-spacing: 25px;
font-weight: 300;
color: #bfbfbf;
}
#headerimg {
padding-top: 30px;
}
li {
display: inline;
}
.spacer1 {
margin-top: 20px;
}
.spacer2 {
margin-top: 50px;
}
.spacer3 {
margin-top: 50px;
}
.spacer4 {
margin-top: 50px;
}
.infoimg img {
-webkit-box-shadow: 3px 4px 3px #7C7C7C;
box-shadow: 3px 4px 3px #7C7C7C;
min-width: 350px;
display: inline-block;
margin-top: 50px;
border-style: solid;
border-color: gray;
border-width: 1px;
}
a:link {
text-decoration: none;
color: black;
}
a:visited {
text-decoration: none;
}
.copyright {
font-size: 51%;
color: #a6a6a6;
letter-spacing: 1px;
padding-bottom: 20px;
font-family: "Proxima Nova", Palatino Linotype, Book Antiqua, Palatino, serif;
}
a {
color: #a6a6a6;
text-decoration: none;
}
a:hover {
color: black;
text-decoration: none;
cursor: pointer;
}
.speech {
font-size: 100%;
color: #808080;
line-height: 160%;
line-spacing: 40%;
max-width: 700px;
font-family: "Proxima Nova", Palatino Linotype, Book Antiqua, Palatino, serif;
margin: 0 auto;
}
<div id="headerimg">
<img src="img/headerfont2.PNG" style=" width:28%">
</div>
<div class="spacer1">
</div>
<div class="w3-container">
<ul>
<li>VISUAL </li>
<li>INFO</li>
<li>CONTACT</li>
</ul>
</div>
<div class="infoimg">
<img src="img/info.png" style="width:20%">
</div>
<div class="spacer2">
</div>
<div class="bio">
<p>
Wilson Schlamme was born in Jackson Mississippi in 1988. He graduated from the USC School of Cinematic Arts in 2010, focusing his studies on photography and visual design. Finding himself dissatisfied with the medium post college, Wilson shifted his work
into painting, and spent the next several years developing a technique largely derived from fluid based paint and self crafted tools. Wilson currently lives in Los Angeles, where he creates abstract works, continuing the tradition of action painting
and further progressing his organic and overwhelming fluid like style.
</p>
</div>
<div class="spacer3">
</div>
<div class="speech">
<p>
<i>
"While the work ranges in severity, it's structured around a succinct visual
reaction produced from color and textual blending. This reaction shapes not
only the core lines of each piece but is also the vocabulary of the work
itself.
Aggressive blending of this sort (done not with a brush but with a hard
edge), combined with a limited color palette, allows for the viewer to feel
familiar and secure with the work while at the same time in question over
the fervent gestural movements. This polarization of the known yet unknown,
similar yet contrasting, is a circumstance that is shared both with the
viewer and theartist, and likewise becomes a focal point of shared
experience."
</i>
</p>
</div>
<div class="spacer4">
</div>
<div class="copyright">
<p>
COPYRIGHT ©2017 WILSON SCHLAMME, ALL RIGHTS RESERVED
</div>

You can use fixed or absolute positioning. Fixed will keep it on the screen at all times, even during scroll; absolute will scroll:
.copyright {
position: fixed;
bottom: 20px;
font-size: 51%;
color: #a6a6a6;
letter-spacing: 1px;
font-family: "Proxima Nova", Palatino Linotype, Book Antiqua, Palatino, serif;
}
Note: I removed the padding because of fixing the position.
Note: I wasn't getting the shifting either, however, I am not going back and forth between pages.
The style looks good, just be careful of your color contrast. Be sure it passes accessibility standards so people with low vision are able to read your site.

Related

How to Remove Top HR Line?

I have an HR tag underneath a header; I noticed that there are actually two lines (one underneath the header and another one above it) when I only want one line underneath the header.
How can I remove the top line and keep only the bottom underline? The top line is not only unnecessary, but it messes up the website's look..
<div class="about-us-text">
<hr> <h1>We Create </h1> <hr>
<h3>PLACES THAT INFLUENCE</h3>
<p>We design places that creates a compelling, communal, environmental, and cultural impact on individuals and communities.</p>
<h3>PLACES THAT INSPIRE</h3>
<p>We design places that encourage an impassioned and spiritual connection. We regard design to be contextual – responding to its layered history.</p>
<h3>PlACES THAT INFORM</h3>
<p>Our modus operandi leverages the competence of the entire firm to consistently produce well-informed design.</p>
</div>
hr {
margin-top: -12.5px;
width: 14.3rem;
height: 1.5%;
color: black;
background: black;
border-radius: 2px;
}
.what-we-do h1{
padding-top: 80px;
font-family: interstate, sans-serif;
font-weight: 700;
font-size: 48px;
/*-webkit-text-decoration: underline 12px;
text-decoration: underline 12px;
-webkit-text-underline-position: under;
text-underline-position: under;*/
color: #300600;
padding-bottom: 25px;
}
.what-we-do h3{
font-family: interstate, sans-serif;
font-weight: 700;
font-size: 24px;
padding-top: 65px;
color: #300600;
}
.what-we-do p {
padding-top: 50px;
font-family: 'Merriweather Sans', sans-serif;
font-weight: 300;
font-style: normal;
font-size: 18px;
word-spacing: 0.75px;
line-height: 50px;
color: #300600;
}
Give the upper hr a class upperhr then use #media query for your preferred screen size then set display property to none.
.what-we-do{
display: grid;
grid-template-columns: 1fr 1fr;
column-gap: 94px;
}
hr {
margin-top: -12.5px;
width: 14.3rem;
height: 1.5%;
color: black;
background: black;
border-radius: 2px;
}
.what-we-do h1{
padding-top: 80px;
font-family: interstate, sans-serif;
font-weight: 700;
font-size: 48px;
/*-webkit-text-decoration: underline 12px;
text-decoration: underline 12px;
-webkit-text-underline-position: under;
text-underline-position: under;*/
color: #300600;
padding-bottom: 25px;
}
.what-we-do h3{
font-family: interstate, sans-serif;
font-weight: 700;
font-size: 24px;
padding-top: 65px;
color: #300600;
}
.what-we-do p {
padding-top: 50px;
font-family: 'Merriweather Sans', sans-serif;
font-weight: 300;
font-style: normal;
font-size: 18px;
word-spacing: 0.75px;
line-height: 50px;
color: #300600;
}
#media only screen and (max-width: 600px){
.upperhr{
display: none;
}
}
<div class="what-we-do">
<div class="about-us-text">
<hr class="upperhr"> <h1>We Create </h1> <hr>
<h3>PLACES THAT INFLUENCE</h3>
<p>We design places that creates a compelling, communal, environmental, and cultural impact on individuals and communities.</p>
<h3>PLACES THAT INSPIRE</h3>
<p>We design places that encourage an impassioned and spiritual connection. We regard design to be contextual – responding to its layered history.</p>
<h3>PlACES THAT INFORM</h3>
<p>Our modus operandi leverages the competence of the entire firm to consistently produce well-informed design.</p>
</div>
</div>

CSS Unordered lists not displaying

I have Sasha Vodnik HTML5 and CSS3 book and I'm trying to create bullet points for my unordered lists. Now I have literally tried a good 15+ variations to the ul styling rules and selectors/declarations. I've tried putting article ul{} instead of ul{}, I have tried using display in the <article> display: list-item; </article> I've also tried changing the color, position, and everything I could think of. Why are the bullets not displaying? Apologies if it's blatently obvious, I'm still trying to learn CSS style and order of precedence. I can not really find anything on what order you should put your style rules especially in the book, so I'm trying to put it in the order of the html document. Thank you for any insight you can share. Also when I try to set the reset styles it collapses & condenses my whole document. Does this mean if I do not set the border, margin, and padding for each of these, that it will be set to 0?
html {
font-size: 12px;
}
h1, h2, h3 {
font-family: 'Bree Serif', serif;
}
.container {
max-width: 700px;
margin: 0 auto;
border: 2px solid black;
}
header {
text-align: center;
padding: .4em;
}
h1 {
color: #EADCDC;
background-color: darkgrey;
font-size: 5em;
text-shadow:2px -2px 4px black;
}
body {
background-color: #dee9f9;
font-family: Tahoma, Arial, Helvetica, sans-serif;
}
h2 {
color: slategray;
font-size: 3em;
}
article {
background-color: ivory;
padding: 3%;
}
h3 {
color: teal;
font-size: 2em;
}
/* paragraph elements */
p {
font-size: 1.2em;
line-height: 1.4em;
}
.accent {
text-decoration: underline;
text-align: center;
}
ul {
list-style: disc;
list-style-position: outside;
font-size: 1.2em;
line-height: 1.4em;
}
aside {
color: rgb(189, 204, 212);
background-color: #EADCDC;
width: 45%;
padding: 2%;
margin: 2%;
box-shadow: 3px 3px 3px black;
border-radius: 30px;
float: right;
}
footer {
padding: 0.6em;
color: ivory;
background-color: darkgrey;
text-align: center;
}
footer p {
margin: .4em;
}
<div class="container">
<header>
<h1>Campus Band Battle</h1>
</header>
<aside>
<h2 class="accent"> ALL AGES EVENT</h2>
<h3>WHEN</h3>
<p>June 8th</p>
<p>8 pm-12pm</p>
<h3>WHERE</h3>
<p>Student Union Auditorium</p>
<p>1234 Learning circle, Sunshine, NV</p>
<p>Featuring Band XYZ, Band ABCD</p>
</aside>
<article>
<h3>Advance Tickets</h3>
<p>$18 General</p>
<p>$36 VIP</p>
<p>Group rates available on site</p>
<h3>SPONSORS</h3>
<ul>
<li>Adventure Works</li>
<li>Charleston Ski House</li>
<li>Contoso Ltd.</li>
<li>Fifth Coffee</li>
<li>Trotter's Travel</li>
<li>School of Fine Art</li>
<li>The Phone Company</li>
</ul>
<h3>BENEFITTING</h3>
<p>The School of Music</p>
<p>Arts and Entertainment Council</p>
</article>
<footer>
<p> www.123BandBattle.org</p>
</footer>
</div>
1.Hi it's look like ul is display correctly, a small bullets at the beginning of every list-item (li) is the natural behavior of unordered list.
2.some elements have default padding/margin, if you set them to 0 the elements won't have extra space around them.

I'm trying to make a vertical line that is responsive to the height of my div

I have my vertical line in the spot that I want it in, but I can't seem to figure out how to get it to be the same height as my divs for my p element and my showtimes. Ideally, the line would resize with the elements when the user resizes the page. I'm new to coding, and I'm sure this is an easy fix, but I've exhausted the resources that I've been using to try and figure it out.
.wrapper {
max-width: 2400px;
margin: 0 auto;
}
h3{
font-family: fino;
color: #BF2035;
text-align: center;
font-size: 6em;
padding: 25px 25px 40px 25px;
}
.showtimes{
width: 50%;
}
p{
font-family: bookmania, serif;
font-weight: 400;
font-size: 3em;
font-style: normal;
text-align: center;
width: 50%;
padding: 40px;
}
.dates{
font-family: bookmania, serif;
font-weight: 400;
font-style: normal;
font-size: 3em;
display: list-item;
text-align: center;
list-style: none;
padding-left: 0%;
padding-right: 65px;
}
.vl {
border-left: 6px solid black;
height: 50%;
position: absolute;
left: 55%;
margin-left: -3px;
}
</div>
<section class="wrapper row">
<p>Pages of a Love Manifesto is a devised theatre piece that, at its core, explores love: our definitions of love, how we relate to love, how we can come to know love and be better practitioners of love, etc. Guided by bell hooks narrative, All About Love, this show is a radical deep dive into love (and heartbreak) inspired by personal tales and testimonies.
</p>
<div class="showtimes">
<h3>Showtimes</h3>
<ul>
<li class="dates">Friday, April 29th, 8:00pm</li>
<li class="dates">Saturday, April 30th, 8:00pm</li>
<li class="dates">Sunday, May 1st, 8:00pm</li>
</ul>
</div>
<div class="vl"></div>
</section>
</div>
Use display: flex so that both the divs are aligned properly. flex-direction: row will handle so that both the elements are side by side.
.wrapper {
margin: 0 auto;
display: flex;
flex-direction: row;
}
h3{
font-family: fino;
color: #BF2035;
text-align: center;
font-size: 6em;
padding: 25px 25px 40px 25px;
}
.showtimes{
width: 50%;
border-left: 6px solid black;
}
p{
font-family: bookmania, serif;
font-weight: 400;
font-size: 3em;
font-style: normal;
text-align: center;
width: 50%;
padding: 40px;
}
.dates{
font-family: bookmania, serif;
font-weight: 400;
font-style: normal;
font-size: 3em;
display: list-item;
text-align: center;
list-style: none;
padding-left: 0%;
padding-right: 65px;
}
</div>
<section class="wrapper row">
<p>Pages of a Love Manifesto is a devised theatre piece that, at its core, explores love: our definitions of love, how we relate to love, how we can come to know love and be better practitioners of love, etc. Guided by bell hooks narrative, All About Love, this show is a radical deep dive into love (and heartbreak) inspired by personal tales and testimonies.
</p>
<div class="showtimes">
<h3>Showtimes</h3>
<ul>
<li class="dates">Friday, April 29th, 8:00pm</li>
<li class="dates">Saturday, April 30th, 8:00pm</li>
<li class="dates">Sunday, May 1st, 8:00pm</li>
</ul>
</div>
<div class="vl"></div>
</section>
</div>
You can use border-right to achieve the same result. If you want the vertical line separately on your p and class showtime's ul you can add the following on each element:
border-right: 5px solid black;
See the snippet below for your reference:
.wrapper {
max-width: 2400px;
margin: 0 auto;
}
h3 {
font-family: fino;
color: #BF2035;
text-align: center;
font-size: 6em;
padding: 25px 25px 40px 25px;
}
.showtimes {
width: 50%;
}
.showtimes>ul {
border-right: 5px solid black;
}
p {
font-family: bookmania, serif;
font-weight: 400;
font-size: 3em;
font-style: normal;
text-align: center;
width: 50%;
padding: 40px;
border-right: 5px solid black;
}
.dates {
font-family: bookmania, serif;
font-weight: 400;
font-style: normal;
font-size: 3em;
display: list-item;
text-align: center;
list-style: none;
padding-left: 0%;
padding-right: 65px;
}
.vl {
border-left: 6px solid black;
height: 50%;
position: absolute;
left: 55%;
margin-left: -3px;
}
</div>
<section class="wrapper row">
<p>Pages of a Love Manifesto is a devised theatre piece that, at its core, explores love: our definitions of love, how we relate to love, how we can come to know love and be better practitioners of love, etc. Guided by bell hooks narrative, All About Love,
this show is a radical deep dive into love (and heartbreak) inspired by personal tales and testimonies.
</p>
<div class="showtimes">
<h3>Showtimes</h3>
<ul>
<li class="dates">Friday, April 29th, 8:00pm</li>
<li class="dates">Saturday, April 30th, 8:00pm</li>
<li class="dates">Sunday, May 1st, 8:00pm</li>
</ul>
</div>
</section>
</div>

<a> Tag doesn't give option to click

I have created a website (for personal use only) and when including tags to link to web pages I am not given the option to click on the link.
#font-face {
font-family: typewrite;
src: url(fonts/typewcond_regular.otf);
}
#font-face {
font-family: typewrite;
src: url(fonts/typewcond_bold.otf);
font-weight: bold;
}
#font-face {
font-family: typewriteSub;
src: url(fonts/typewcond_demi.otf);
}
div.header {
font-family: typewriteSub;
font-size: 30;
border-bottom: 4px solid #BDBDBD;
position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: auto;
background-color: #FFFFFF;
z-index: 2;
}
div.post {
font-family: typewrite;
font-size: 25;
border: 2px solid #BDBDBD;
padding: 0px 10px 0px 10px;
margin-bottom: 10px;
position: relative;
width: 70%;
left: 15%;
z-index: -1;
}
div.headline {
font-family: typewrite;
font-size: 25;
color: #424242;
border: 4px solid #424242;
padding: 0px 10px 0px 10px;
margin-bottom: 10px;
text-align: right;
position: relative;
width: 70%;
left: 15%;
z-index: -2;
}
div.headline img {
vertical-align: center;
float: left;
min-height: 50%;
max-height: 90%;
min-width: 5%;
max-width: 20%;
}
div.headline h2 {
color: #000000;
vertical-align: top;
text-align: right;
font-family: typewriteSub;
font-size: 50;
}
h1 {
font-family: typewrite;
font-weight: bold;
font-size: 30px;
margin: 0;
}
h2 {
font-family: typewriteSub;
font-size: 50;
}
img.button {
border-style: solid;
border-color: #BDBDBD;
border-width: 2px;
border-spacing: 0px;
}
blockquote {
border-style: solid;
border-color: #585858;
background-color: #848484;
font-family: typewrite;
font-style: italic;
}
blockquote h3 {
font-family: typewriteSub;
font-weight: bold;
font-style: normal;
}
*:not(a) {
pointer-events: none;
}
<div class="header">
<a href="javascript:history.go(0)">
<img src="images/refresh.png" alt="Refresh" style="height:5%">
</a>
<h1 style="text-align:center">The Meaning</h1>
<br>
</div>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<div class="headline">
<img src="images/applewatch.jpg" alt="Apple Watch">
<h2>Apple employees get 50% off the Apple Watch!</h2>
Apple employees get a <em>significant</em> discount on the new Apple Watches!
<br>
</div>
<div class="post">
<h2>'Conversation with a stranger'(?) by trentonleetiemeyer</h2>
<blockquote>
At the bar, at a bar.
<br>This one is not my own.
<br>I don't know
<br>the bartender,
<br>I don't know
<br>the names of the heroes
<br>in the frames on the walls.
<br>I keep my head down,
<br>nodding in and out of
<br>a one-sided conversation
<br>with a stranger.
<br>He drones on,
<br>rattling his saber,
<br>spitting venom
<br>at the President.
<br>I change the subject
<br>to sports,
<br>the only thing
<br>I care less about
<br>than politics.
<br>This gets the bartender
<br>in on the discussion,
<br>and I slide out the back door.
<br>I light a cigar,
<br>the smoke hangs in the air
<br>but for a moment,
<br>and start talking to a woman,
<br>a woman who nods in and out
<br>of a one-sided conversation
<br>with a stranger.
</blockquote>
</div>
<div class="post">
<h2>'Good Decisions'(?) by trentonleetiemeyer</h2>
<blockquote>
I haven't made
<br>a good decision
<br>in my life,
<br>but there is no regret.
<br>Regret would infer
<br>an intention to change.
<br>I don't want to know
<br>what would be
<br>if I had followed the other path,
<br>if I had taken a left
<br>instead of a right.
<br>
<br>If I could meet the other me,
<br>the one who made
<br>all the right calls,
<br>I'd probably be
<br>more disappointed,
<br>than jealous.
<br>Disappointed,
<br>to find that all
<br>of my poor decisions
<br>were the right calls,
<br>all along.
<br>
</blockquote>
</div>
<div class="post">
<h2>'Supposed to Write'(?) by trentonleetiemeyer</h2>
<blockquote>
I was supposed
<br>to write a poem tonight.
<br>It was going to be tight,
<br>nothing too long,
<br>something clever,
<br>about mapping the human genome.
<br>
<br>There's always tomorrow.
<br>
</blockquote>
</div>
Your link is not clickable, because the z-index is -1
Remove that style from div.post selector
div.post {
font-family: typewrite;
font-size: 25;
border: 2px solid #BDBDBD;
padding: 0px 10px 0px 10px;
margin-bottom: 10px;
position: relative;
width: 70%;
left: 15%;
/* z-index: -1; */
}
More : z-index

Getting rid of the space in heading (HTML, CSS related)

Just wondering how to get rid of the unnecessary looking spaces
in my heading. I want my header to look similar to the capture 2 (2nd picture) but there are unnecessary spaces that I can't seem to get rid of. I ran it through jsfiddle:
http://jsfiddle.net/yT6h6/ and I can still see the spaces even though I don't think there was anything wrong with the code. Please take a look at this and greatly appreciated if you can help me.
HTML Code:
<div class="content">
<div class="heading"><b style="font-size:14px; font-family:'Arial', Gadget, sans-serif"><b style="font-size:9px;">Home \\ Current Students \\</b>
</b>
<br />FBE Degrees & Electives
<br>
<span class="style11">FBE Degrees & Other Courses for FBE students including Elective courses</span>
</div>
CSS Code:
.heading {
height: auto;
width: 525px;
background-color: #333333;
font-family:"Courier New", Courier, monospace;
font-size: 28px;
color: #DBDBDB;
padding-left: 30px;
font-weight: bold;
padding-top: 5px;
margin-top: 5px;
padding-bottom: 5px;
padding-right: 20px;
background-repeat: no-repeat;
background-position: left center;
}
.content {
height: auto;
float: left;
width: 575px;
background-repeat: repeat;
background-color: #FFFFFF;
}
.style11 {
font-size: 10px;
font-family: Arial, Helvetica, sans-serif;
line-height: 15px;
color: #336666;
}
a.link5:link {
color: #FFFFFF;
}
a.link5:visited {
color: #FFFFFF;
}
a.link5:hover {
color: #E9E8C7;
}
a.link5:active {
color: #E9E8C7;
}
try this one remove line-height and add display:block
.style11 {
font-size: 10px;
font-family: Arial, Helvetica, sans-serif;
display:block;
color: #336666;
}
I think you firstly need to seriously tidy up that HTML and use some more natural elements. The heading should be a H of some level, probably h1. The paragraph tags make more sense for the text. Everything will be far cleaner and easier to solve if you do this. Here's my suggestion that changes the HTML and fixes your margin issues.
HTML
<div class="content">
<div class="heading">
<p class="crumbs">Home \\ Current Students \\</p>
<h1>FBE Degrees & Electives</h1>
<p class="subheading">FBE Degrees & Other Courses for FBE students including Elective courses</p>
</div>
</div>
CSS
p {
font-size: 10px;
font-family: Arial, Helvetica, sans-serif;
color: #336666;
}
a {
color:#fff;
text-decoration:none;
}
.heading {
background:#333333;
padding:20px;
}
.heading p {
margin:0;
padding:0;
line-height:10px;
}
h1 {
margin:0;
margin-bottom:5px;
font-family:"Courier New", Courier, monospace;
font-size:28px;
line-height:36px;
color:#DBDBDB;
}
Fiddle here:
http://jsfiddle.net/yT6h6/6/
It can be simplified more actually (I left some of your classes in there even though they aren't used), but this is at least a lot neater to work with.
Hey i've tried your code see at: http://jsbin.com/awonek/1/edit
Looks fine to me.
could code try
div#heading{
margin-bottom:-20px;
}
what browsers have you tried it in?
Added some changes: See http://jsbin.com/uvurev/1/edit
<div class="content">
<div class="heading">
Home \\ Current Students \\
<h2 class="M_logo_text">FBE Degrees & Electives</h2>
<span class="style11">FBE Degrees & Other Courses for FBE students including Elective courses</span>
</div>
</div>
CSS
div.heading {
height: auto;
width: 525px;
background-color: #333333;
font-family:"Courier New", Courier, monospace;
color: #DBDBDB;
padding-left: 30px;
font-weight: bold;
padding-top: 5px;
margin-top: 5px;
padding-bottom: 5px;
padding-right: 20px;
background-repeat: no-repeat;
background-position: left center;
}
.content {
height: auto;
float: left;
width: 575px;
background-repeat: repeat;
background-color: #FFFFFF;
}
.style11 {
font-size: 10px;
font-family: Arial, Helvetica, sans-serif;
line-height: 15px;
color: #336666;
}
a.link5{
font-size:9px; font-family:'Arial', Gadget, sans-serif
margin-right: -2px;
text-decoration: none;
}
a.link5:link {
color: #FFFFFF;
}
a.link5:visited {
color: #FFFFFF;
}
a.link5:hover {
color: #E9E8C7;
}
a.link5:active {
color: #E9E8C7;
}
/*
added style
*/
b.type1{
font-size:9px; font-family:'Arial', Gadget, sans-serif
}
h2.M_logo_text{
font-size: 20px;
margin:0px;
}