Is this possible? |
Is this possible? |
May 13 2009, 04:25 PM
Post
#1
|
|
|
Member ![]() ![]() Group: Member Posts: 18 Joined: Mar 2009 Member No: 717,989 |
I was wondering if it was possible to make a myspace into something like these websites.
http://blog.urbanoutfitters.com http://modularpeople.com If anyone could help with even making a normal webpage like these, that would be great also. |
|
|
|
![]() |
May 13 2009, 04:35 PM
Post
#2
|
|
|
Senior Member ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 1,237 Joined: May 2008 Member No: 648,123 |
for the first, partially. you'd be able to build a myspace to look pretty much exactly like that, but you'll run into a problem when making the navigation on top. usually you can just use position:fixed;, but it doesn't work in IE (at least not in IE7 and earlier; i haven't checked IE8 yet). many sites fix the fixed position problem by using javascript, but you can't on myspace.
all you really need is a very wide div with smaller elements inside, and float them all to the left. for example, the CSS: CODE .navigation { left:0; position:fixed; top:0; height:50px; } and potentially the HTML:.main { left:0; padding:50px 0 0; position:absolute; top:0; width:5000px; } .section { float:left; height:500px; width:300px; } CODE <div class="navigation">
link link link </div> <div class="main"> <div class="section"> text, images, videos, etc. </div> <div class="section"> text, images, videos, etc. </div> <div class="section"> text, images, videos, etc. </div> <div class="section"> text, images, videos, etc. </div> </div> |
|
|
|
JaredxSmith Is this possible? May 13 2009, 04:25 PM
JaredxSmith Thank you.
I'll try it out. May 13 2009, 04:59 PM
JaredxSmith I was thinking of putting scrollboxes for my conte... May 13 2009, 05:37 PM
JaredxSmith This pretty much working, thank you very much.
But... May 14 2009, 05:39 PM
JaredxSmith I'm trying to use this code:
CODE<style... May 15 2009, 02:04 PM
Mike Remove this from the second line:
CODEbody {
See ... May 15 2009, 03:09 PM
JaredxSmith This worked.
Thank you so much.
:) May 15 2009, 05:19 PM
Mike Topic closed & moved. May 15 2009, 05:47 PM![]() ![]() |