Im new to rails and html and css. Ive read through tutorials but cant
get this to work.
I have a navbar which has the site name on the left and then some nav
links on the right ( for now the links are just text placeholders). The
site title font is larger than the nav link font and the two wont line
up on the row. It seems they are being lined up via their tops and not
their bases.
.
.
.
<div id="header">
<span id="site-title"><h1>Hamster</h1></span>
<span id="user-links"><h2>Sign Up | Log In </h2></span>
<div class="clear"></div>
</div>
.
.
.
and css
* {
padding: 0px;
margin: 0px;
}
h1 {
font-family:"Georgia,serif";
font-size: 4em;
}
h2 { font-size: 2.5em;}
h3 {font-size: 1.5em;}
p {font-size: 1.1em;}
body {
font-family: Arial,Helvetica,sans-serif;
font-size: 80%;
background: #339120 ;
}
#header {
color:white;
}
#site-title {
float: left;
width: 30%;
}
#user-links {
float: right;
width: 69%;
text-align: right;
}
can anyone tell me where im going wrong on this?
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---