html - webpage - text positioning in a header -
i've trying position text along same line, i'm having trouble doing this. want achieve text on top left of screen , top-right of screen, display links other urls. have far:
this want achieve:
can provide tops on how achieve this? thank you
code below:
<style type="text/css"> @font-face /* support browsers & ie v10 onwards*/ {font-family:homefont; src: url("font.ttf");} {font-family:headerfont; src: url("playball.ttf");} body {background:url('img/mybackgroundhd.jpg') no-repeat center center fixed;} <!-- make header sticky --> #header_container {background:#00e5ee; border:0px solid #666; height:70px; left:0; position:fixed; width:100%; top:0;} <!-- header text --> #header{padding: 0.3em 0; border-bottom: 0px; overflow: hidden; zoom: 1; line-height:0px; margin:0 auto; width:940px; text-align:left;display:inline-block; float:right;} #wrapper{width:900px;margin:0 auto;} a{color:#444;text-decoration: none;} .logo{margin-left:600px;margin-top:100px;background:#fff;padding:10px;} .bigtitle{font-family: homefont; font-size:150px; color:#000; text-transform:uppercase; text-shadow:4px 1px 1px #444; text-align:center; margin-top:200px; opacity:0.6;} .header{top:100%; left:0%; font-family: headerfont; font-size:20px; color:#ffffff; font-style:italic; padding-top:0px; padding-bottom:0px; padding-right:20px; padding-left:0px;} </style> </head> <body> <!-- begin: sticky header --> <div id="header_container"> <div id="header"><p class="header"> follow me on: <a style="margin:0;" href="https://www.facebook.com/chilunliuthebosse"> <img src="/img/facebook-lnk.gif" alt="alt text" style="border:none; width="40" height="40"></a> <a style="margin:0;" href="https://plus.google.com/u/0/+chilunliu/posts/p/pub"> <img src="/img/googleplus-lnk.gif" alt="alt text" style="border:none; width="40" height="40"></a> <a style="margin:0;" href="http://www.linkedin.com/pub/chilun-liu/1b/297/416"> <img src="/img/linkedin-lnk.gif" alt="alt text" style="border:none; width="40" height="40"></a> <a style="margin:0;" href=""> <img src="/img/email-lnk.gif" alt="alt text" style="border:none; width="40" height="40"></a> <a style="margin:0;" href="http://www.youtube.com/user/chilunliu"> <img src="/img/youtube-lnk.gif" alt="alt text" style="border:none; width="40" height="40"></a> </div> </p> </div> <!-- end: sticky header --> <div id="wrapper"> <h2 class="bigtitle"> <p> chilun liu </p> </h2> </div> </body> </html>
put inside <div id="header-container">
2 divs:
<div id="subheader-left" style="float:left>follow me on</div> <div id="subheader-right" style="float:right; text-align:right"> images here </div>
Comments
Post a Comment