Making a Band Layout, Version 2 |
Making a Band Layout, Version 2 |
![]()
Post
#1
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 7,063 Joined: Jul 2008 Member No: 670,288 ![]() |
MySpace Band Layout Tutorial Welcome to Version 2 of the Band Layout Tutorial! This tutorial will help you out in making those professional looking layouts that graphic designers are making for these rising bands. A lot of people are getting into this kind of thing, and resources for Band Layouts are very slim, so I hope this topic helps anyone out that needs the help and resources. Rules:
|
|
|
![]() |
![]()
Post
#2
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 7,063 Joined: Jul 2008 Member No: 670,288 ![]() |
Getting Started Here is a list of things you might want consider using to make your layout: Adobe Photoshop CS4 Adobe Illustrator CS4 GIMP Notepad Some of this tutorial will be based on Adobe Photoshop CS4, but the steps are optional, so you don't have to follow those steps. Before we even start making the layout, make sure you have everything prepared for the layout. Make sure you get rid of all of your current coding on your MySpace, but make sure you do all of your editing in Safe Mode. If you don't do editing in Safe Mode, you will not be able to save your changes. Also, make sure you have your images ready to put on the layout. You will want to have your pictures all uploaded, unless you are looking into slicing images, then you'll have to upload as you go along. Here are some websites you can use to upload your pictures.In my opinion, I would recommend using webs, because Photobucket and Imageshack aren't that reliable. |
|
|
![]()
Post
#3
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 7,063 Joined: Jul 2008 Member No: 670,288 ![]() |
Changing the Look & Feel Once you're all prepared to start your layout, now you're ready to start changing the look and feel of your layout. Feel free to use this stylesheet. I recommend that you use it because using generated layout stylesheets make it much harder for me to pinpoint a problem / fault in your layout. CODE <style type="text/css"> .orangetext15 {display: none;} .whitetext12 {display: none;} table table div embed, table table div object {position:relative; z-index:9;} table, tr, td{ background-color:transparent; border-style:none; } body { background-color: 000000; background-image:url(); background-position: top center; background-repeat: no-repeat; background-attachment: scroll; } table table table table, table table table td{ background-image:none; background-color:transparent; } body, div, p, strong, td, .text, .blacktext10, .blacktext12, a.searchlinkSmall, a.searchlinkSmall:link, a.searchlinkSmall:visited{ color:FFFFFF; font-size:9pt; line-height: 10pt; font-weight:normal; font-style:normal; text-decoration:none; text-transform:none; font-family:Helvetica Narrow, sans-serif; } strong, .lightbluetext8, .btext, .redtext, .redbtext{ color:666666; font-size:9pt; font-weight:normal; font-style:normal; text-decoration:none; text-transform:none; font-family:Helvetica Narrow, sans-serif; } a font, a:link, a:visited, a.navbar, a.navbar:link, a.navbar:visited, a.man, a.man:link, a.man:visited, a.man font, a.redlink, a.redlink:visited{ color:FFFFFF; font-size:9pt; font-weight:normal; font-style:normal; text-decoration:none ; text-transform:none; font-family:Helvetica Narrow, sans-serif; } a { color: FFFFFF !important; font-family: Arial !important; } a:hover { color: 666666 !important; font-family: Arial !important; } a:hover, a:hover font, a:active, a.navbar:hover, a.navbar:active, a.man:hover, a.man:active, a.man:hover font, a.searchlinkSmall:hover, a.searchlinkSmall:active, a.redlink:hover, a.redlink:hover{ color:666666; font-size:9pt; font-weight:normal; font-style:normal; text-decoration:normal ; text-transform:none; font-family:Helvetica Narrow, sans-serif; } table table table table, div table table table{ border-style:none; } </style> This gets asked a lot, but I wouldn't ask how to hide things in this tutorial, and it's something I can't / will not go over. Table classes for band layouts are much more different than regular profiles, so it's nearly impossible to hide one section without the code conflicting with something else in your layout. |
|
|
![]()
Post
#4
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 7,063 Joined: Jul 2008 Member No: 670,288 ![]() |
Adding a Top Banner If you want to add a top banner to your layout, there are two ways of going about it. You can put a top banner above the navigation, or you can put one below the top banner. I will not be going over how to add a top banner above the navigation, but here is how to put one under the navigation. With the following code, here are some important aspects you'll have to look at: Line 1: .profileWidth table {margin-bottom:###px; width:800px; } Line 5: width:###px; height:###px; Line 7: margin:0px 0 -400px -###px; What each line means: Line 1: Margin-bottom is the height of your top banner image.. Line 2: The width and height are the dimensions of your top banner image. Line 7: Just edit the very last property in that line. For example, in this code, I have the number -###. You will change the number to the height of your image, but make sure the negative symbol is there. This code goes at the very top of your Band Biography section. If it gets placed anywhere, it will not create the right gap. CODE <style> .profileWidth table { margin-bottom:1150px; width:800px; } .rail { display:none; } .gap { background:url() top left no-repeat; width:900px; height:1150px; position:absolute; top:0; left:50%; margin:0px 0 -400px -1150px; </style> <div class="gap"></div> Okay, now your going to have to use some DIV positioning codes to position your top banner in between the gap. If you are not familiar with DIV codes, you might want to check out this tutorial for more information and practice. Use the following code: CODE .topbanner {position:absolute; left:50%; top:###px; margin-left:###px; _margin-left:###px; width:###; height:###px; z-index:1;} I didn't put style tags between the code, because you should add this piece of coding to your stylesheet. It makes it a lot easier to find things, and it throws some more organization into your stylesheet. All you have to do here is change the ### symbols to the number that works for you. As you can see, there are two margin-left properties. _margin-left:###px; is a fix for Internet Explorer to get it to work right in both Internet Explorer and Firefox. Do not change left:50%; to any other percent. Almost everyone does this, and that's where they run into their problems. left:50%; makes sure everything stays in the same area in both browsers. Now just add the DIV class in the Band Bio section and you're set: CODE <div class="topbanner">
Image code here </div> |
|
|
![]()
Post
#5
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 7,063 Joined: Jul 2008 Member No: 670,288 ![]() |
Slicing Images This is an optional part of the tutorial. Slicing images will help greatly with your images loading faster, and it also helps add links to images, since imagemapping will not work on band layouts. For more information on this, check out my tutorial on how to slice images and add links. |
|
|
![]()
Post
#6
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 7,063 Joined: Jul 2008 Member No: 670,288 ![]() |
Working With Rollover Images This, as well is an optional part of the tutorial, but it is also one of the hardest parts. You're going to have to pay super close attention to what I say so you can grasp a better understanding of how to do this. There are other methods as to how to do rollovers with images, but I find my way a lot easier, especially if you slice your images to make them links. There isn't really any explanation needed as far as the codes go to get this to work, you just need to be able to position things correctly, and this should be a snap for you. Here is the code you will use for your rollovers: CODE .topbannerhover {position:absolute; top:###px; left:50%; margin-left:###px; _margin-left:###px; width:###px; height:###px; z-index:1;} div.topbanner a:hover{ border-top: none; opacity: 0.0; filter: alpha(opacity=0); width: 0px; height: 0px; z-index:1; } .topbanner {position:absolute; top:###px; left:50%; margin-left:###px; _margin-left:-###px; width:###px; height:###px; z-index:1;} I'll try to give the best explanation of this I can, but it's pretty self-explanatory. The first code for positioning will be the hover layer (the rollover images), the middle code causes the image to change on rollover. The only thing you need to change in that code is the name of the layer to the name of the layer used for positioning the image before hovering. In this case for the coding, the code with the rollover images will be .topbannerhover, and the two parts, div.topbanner a:hover and .topbanner, for the image before rollover. If you are having trouble understanding, the screenshots provided will give you an idea of what you're going to be doing: Screenshots are temporarily unavailable... The .topbannerhover and .topbanner need the same exact attributes for positioning, that way one is on top of the other. When you put the DIV classes up for them, they will look something like this: CODE <div class="topbannerhover"> Image rollover code </div> <div class="topbanner"> Sliced image code </div> Your on-hover layer will always come first. Once you're done, save changes and check to see if you've done it correctly. If not, keep trying. If you do get it, keep doing the same process any other time you may need it. |
|
|
![]()
Post
#7
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 7,063 Joined: Jul 2008 Member No: 670,288 ![]() |
Creating a Custom Left Side If everything thus far has been easy for you on this tutorial, you should have no problem creating your own custom left side. As I said earlier, you can not hide tables on band layouts without running into a problem somewhere else, so covering it up with a DIV layer is going to be our fix for this problem. Before you create your left side, keep these things in mind.
CODE .tg_left {position:absolute; top:###px; left:50%; margin-left:###px; _margin-left:###px; width:325px; height:###px; z-index:1;} As I said earlier, I did not add style tags because I recommend you incorporate it in your stylesheet, and replace the ### symbols with numbers that work for you. Once you think you have it positioned where you want it, add a div class code in the Band Bio section: CODE <div class="tg_left"> Left side codes / images here. </div> It may take a couple tries to position, just be patient with it. FREQUENTLY ASKED QUESTION: Q: My left side overlaps my comments, how do I fix it? A: Simple, just fill up the right side of your layout with information, headers, and other miscellaneous items. The right side will go down, pushing your comments down with it. You can also position your comments by moving them to the left, but it causes browser problems most of the times, so I'm not recommending it or linking how to. |
|
|
![]()
Post
#8
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 7,063 Joined: Jul 2008 Member No: 670,288 ![]() |
Adding Headers There isn't really much of an explanation needed here, all you have to do is change the parts that I've highlighted in bold for you. There are header codes for the band biography, blogs, friends, and comments. Once again, I am not adding style tags because I recommend adding it into your stylesheet. Band Biography: CODE <img src="imageurlhere" /> Blogs: CODE html body.bodyContent table tbody tr td table tbody tr td.text table.latestBlogEntry{ background-color: transparent !important; color: ###### !important; width: 450px !important; border-collapse: collapse !important; margin-bottom: 0 !important; margin-left: 0 !important; margin-right: 0 !important; margin-top: 15px !important; padding: 0 !important; table-layout: fixed !important; position: relative !important; background-image: url(BACKGROUNDIMAGEHERE); background-repeat: no-repeat; background-position: 0px 0px; overflow: hidden; _background-position: 0px 2px; _margin-left: -4px !important; _margin-top: 0px !important; } html body.bodyContent table tbody tr td table tbody tr td.text table.latestBlogEntry tbody tr{ display: inline; margin: 0 !important; padding: 0 !important; } html body.bodyContent table tbody tr td table tbody tr td.text table.latestBlogEntry tbody tr td{ display: block !important; margin: 0 !important; padding: 0 !important; width: 449px !important; font-family: Arial; color: ###### !important; clear: both !important; font-size: 1px !important; line-height: 0px; vertical-align: middle; } html body.bodyContent table tbody tr td table tbody tr td.text table.latestBlogEntry tbody tr td a{ float: right; line-height: 35px; color: ######; padding: 0px !important; margin: 0px !important; padding-right: 5px !important; position: relative; z-index: 6; font-weight: normal; font-size: 10px !important; display: block; height: 35px; text-transform: Capitalize; _font-size: 10px !important; _width:120px; _text-align:right; _font-weight: normal; _postion: absolute !important; _margin-top: -4px !important; } html body.bodyContent table tbody tr td table tbody tr td.text table.latestBlogEntry tbody tr td span.text{ line-height: 35px; position: absolute; display: block; border-bottom: 1px dotted dimgray; border-color: ######; width: 443px; color: ######; padding: 0px !important; margin: 0px !important; padding-left: 5px !important; z-index: 5; font-weight: normal; font-size: 10px !important; height: 35px; _font-size: 10px !important; _margin-top: -3px !important; _font-weight: normal !important; _margin-left: -3px !important; _width:449px; } html body.bodyContent table tbody tr td table tbody tr td.text table.latestBlogEntry tbody tr td span.btext{ display: block; float: left; width: 50px !important; height: 43px; font-size: 1px; overflow: hidden; color: ###### !important; line-height: 300px; } Friends: CODE html body.bodyContent table tbody tr td table tbody tr td.text table.friendSpace tbody tr td.text table tbody tr td span.orangetext15{ display: block !important; height: 45px !important; width: 450px !important; margin: 0 !important; padding: 0 !important; font-size: 1px; overflow: hidden; background-image: url(BACKGROUNDIMAGEURL); background-repeat: no-repeat; color: 000000 !important; line-height: 10px !important; margin-top: -3px !important; } Comments: Comments are the hardest headers to work with. The recommended width for the comment header is 780px. The code is very hard to follow, so you will have to experiment around with this code. CODE html body.bodyContent table tbody tr td table.friendsComments {
width: 720px !important; margin: 0 !important; padding: 0 !important; margin-top: 20px !important; overflow: hidden !important; background-color: transparent !important; margin-left: -1px !important; _width: 720px !important; _margin-left: -2px !important;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table { width: 100% !important; border-collapse: separate !important; border-spacing: 0px 0px !important; background-color: transparent !important; height: auto !important;} table.friendsComments tbody tr td.text table tbody tr td { background-color: transparent !important; height: auto !important;} table.friendsComments tbody tr td.text table tbody tr td span.orangetext15 { background-image: url(imageurlhere); background-repeat: no-repeat !important; background-color: transparent; display: block !important; height: 40px !important; color: 000000 !important; width: 800px; position: relative; overflow: hidden; font-size: 1px; text-align: right; margin-top: 5px; line-height: 300px !important; _width: 800px !important; _border-left: 1px 000000 !important; _border-right: 1px 000000 !important; _height: 40px !important; _margin-bottom: -1px !important;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td b { display: block; position: absolute; z-index: 9; width: 750px; height: 15px; line-height: 15px; overflow: hidden; margin: -25px 0 0 8px; text-align: right; padding-right: 12px !important; color: 000000; font-weight: normal; font-size: 12px; _margin: 0px 0 0 15px; _font-size: 12px !important; _color: 000000;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td b span.redtext { font-weight: normal; color: 666666; padding: 0px 2px;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td b a { color: 666666 !important; font-size: 12px !important; text-transform: none; margin: 0 -7px 0 -8px !important; padding: 0 9px 0 9px !important; background-color: transparent !important; position: relative !important; display: inline !important; z-index: 9; border: none !important; letter-spacing: 0px !important; _font-size: 11px !important; _margin: 0 !important; _padding: 0 !important;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td table { overflow: hidden !important; border: 1px 000000 !important; border-color: 000000 !important; width: 100% !important;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td table tr td { background-color: transparent !important; text-align: left; vertical-align: top; overflow: hidden !important; font-size: 12px !important; line-height: 12px !important; text-transform: none !important; letter-spacing: 0px; color: 000000 !important; margin: 0 !important; padding: 5px 0px 5px 0px; border-bottom: 0px 000000 !important; border-color: 000000 !important; _line-height: 16px !important;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td table tr td span.blacktext10 { color: 000000 !important; text-transform: None !important; margin: 0px !important; padding: 0px important; display: block !important; font-size: 12px; font-family: arial, sans-serif !important; font-weight: normal; letter-spacing: 1px; text-align: right; margin: 10px 10px -12px 0px !important; width: 650px; border-top: 1px 000000; _margin: 12px 0px -.5em 0px !important; _width: 650px;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td { background-color: transparent !important;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td a { display: block; border: 0px 000000 !important; border-color: 000000 !important; border-top-style: solid !important; border-top-width: 0px !important; text-align: center; text-transform: Uppercase; padding: 8px; font-size: 12px; letter-spacing: 1px; color: transparent !important; position: relative !important; margin-top: -3px !important; background-color: transparent; _margin-top: -6px !important;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td table tr td a { display: block !important; color: 000000 !important; margin: 0px !important; padding: 10px 10px 0px 10px !important; text-transform: none !important; margin-bottom: -15px !important; font-size: 10px !important; line-height: 11px !important; border: none !important; letter-spacing: 0px !important; text-align: center !important; width: 110px !important; overflow: hidden !important; font-weight: normal; _width: 124px !important; _margin-bottom: -15px !important;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td table tr td a img { visibility: visible !important; border: 0px 008080 !important; border-color: 000000 !important; padding: 0px !important; margin: 0px !important; margin-top: -12px !important; width: auto !important; _margin-left: 0px;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td table tr td img.ImgOnlineNow { display: block; position: relative; margin: 15px 0 -20px 26px !important; border: none !important; _margin: 15px 0 -20px 21px !important;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td table tr td img { max-width: 100%; margin: 0px !important; margin: 0px 0px 12px 0px !important;} |
|
|
![]()
Post
#9
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 7,063 Joined: Jul 2008 Member No: 670,288 ![]() |
Moving Blogs to the Left Side This has become quite popular for band profiles, and a lot of people have been asking me for my code that I use to do that, so I'm going to go ahead and provide it for you. All you have to do is position it, and you're good. What I highlighted in bold is all you need to change. CODE .latestBlogEntry { position:absolute; top:###px; margin-left: -###px; left:50%; width: 325px; background-color: transparent; z-index: 9; } table .latestBlogEntry { width:325px!important; } To add a header to the blog when you move it to the left side, it's simple. All you have to do is create another DIV layer and position it above the blogs section, and it looks just as good. |
|
|
![]()
Post
#10
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 7,063 Joined: Jul 2008 Member No: 670,288 ![]() |
Adding a Shows Header If you got the top banner code down, then this will also be easy for you. This is a really simple code, and it's foolproof. Use this code to create a gap between the player and shows section. The bold part is the only part that you need to change: CODE table table table table td.text span.whitetext12 { position: relative; top: 0px; display: block; left: 0px; visibility: visible; width: 1px; height: 10px; text-indent: -999999px; background: transparent url() bottom left no-repeat; } Then just add a positioning code and DIV class code to position a shows header in between the space you created and you're all set. CODE .shows {position:absolute; top:###px; left:50%; margin-left:###px; _margin-left:###px; width:325px; height:###px; z-index:1;} CODE <div class="shows"> Image code here </div> FREQUENTLY ASKED QUESTION Q: Whenever I add a new show, the shows header moves down / up. How do I stop it from doing this? A: Most of the time your problems starts with the left side DIV layer you've created. The width may overlap over towards the right side, causing it to be pushed down. Check that out and see if that is causing the problem. |
|
|
![]()
Post
#11
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 7,063 Joined: Jul 2008 Member No: 670,288 ![]() |
Finishing Up This brings you to the end of my band tutorial. If there are any parts that confused you, feel free to bring it up by posting in here or you can PM me, but I prefer you post in here first. To make sure your layout looks good in all browsers, check out Browsershots.org and choose the browsers you want screenshots for. It will let you know if anything is misaligned. If that's the case, look through your codes for any possible errors. If you are stumped and can't find out why something is acting up, post in here or leave me a PM. |
|
|
![]()
Post
#12
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 7,063 Joined: Jul 2008 Member No: 670,288 ![]() |
Frequently Asked Questions Q: My left side overlaps my comments, how do I fix it? A: Simple, just fill up the right side of your layout with information, headers, and other miscellaneous items. The right side will go down, pushing your comments down with it. You can also position your comments by moving them to the left, but it causes browser problems most of the times, so I'm not recommending it or linking how to. Q: Whenever I add a new show, the shows header moves down / up. How do I stop it from doing this? A: Most of the time your problems starts with the left side DIV layer you've created. The width may overlap over towards the right side, causing it to be pushed down. Check that out and see if that is causing the problem. |
|
|
![]()
Post
#13
|
|
Member ![]() ![]() Group: Member Posts: 18 Joined: Mar 2009 Member No: 717,989 ![]() |
Perfect. :)
|
|
|
![]()
Post
#14
|
|
Newbie ![]() Group: Member Posts: 2 Joined: May 2009 Member No: 727,528 ![]() |
sweeeeeeeet.
Pictures would be a nice addition though :D |
|
|
![]()
Post
#15
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 7,063 Joined: Jul 2008 Member No: 670,288 ![]() |
Screenshots are coming soon.
|
|
|
![]()
Post
#16
|
|
![]() Senior Member ![]() ![]() ![]() ![]() Group: Member Posts: 253 Joined: Jul 2009 Member No: 739,898 ![]() |
Haha, I'm going to need the screenshots to understand the rollovers!
I've been trying for days. D: |
|
|
![]()
Post
#17
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 7,063 Joined: Jul 2008 Member No: 670,288 ![]() |
|
|
|
![]()
Post
#18
|
|
Newbie ![]() Group: Member Posts: 2 Joined: Jul 2009 Member No: 736,909 ![]() |
Ok so I've been working on this top header i have it sliced and coded with all the images up and running and all hosted on tinypic and no longer hosted locally. I've run into some trouble on getting this top header in the right spot. I've had experience with putting top headers up but with no links so its not just an upload image. Do i use a divs? Codes would help out a ton. Thanks so much.
|
|
|
![]()
Post
#19
|
|
Senior Member ![]() ![]() ![]() Group: Member Posts: 60 Joined: Mar 2009 Member No: 719,573 ![]() |
Hi
The band tutorial is great and im almost done with my page However ive got a niggly prob - with the header for the blogs section mine overlaps onto the blogs...if i change any margin attributes it shifts the header over left ideally i want to line it up with my shows header but fiddling with the code doesnt seem to do anything unfortunately i am at work so i cant attach a screenshot but my myspace address is www.myspace.com/tgvisualsbands any help would be great thanks |
|
|
![]()
Post
#20
|
|
Newbie ![]() Group: Member Posts: 1 Joined: Aug 2009 Member No: 740,610 ![]() |
this tutorial is a great help, but i need a little more of that: how would i put rollover links in the left div cover
edit: nvm. got it |
|
|
![]()
Post
#21
|
|
Newbie ![]() Group: Member Posts: 2 Joined: Aug 2009 Member No: 740,722 ![]() |
yoo can someone tell me how to make the view all friends text to look like " view all of blablabla's friends " and how to make lines on comments and moving the add comments text to the right?
ur help will be greatly appreciated!! ^^ sorry for asking so much guys... XP |
|
|
![]()
Post
#22
|
|
Newbie ![]() Group: Member Posts: 2 Joined: Aug 2009 Member No: 740,722 ![]() |
oww there's a way of doing that on the tutorials?
sorry then my bad... i go through with the tutorial first, the ask for questions later.. XP sorry -_- yay i tinkered with the codes for the comment part and managed to get it goin with the one i hv now.. there a bit of a problemo thoo.. i still dun get how to make the lines show up and there's hint of i dunno wht just on top of the comments part,, can somebody tell me how to get over this mess? sorry XP nevermind guys! i figured it out!! thank u so much for the lovely tutorial!! ^^
Reason for edit: Please use the Edit button instead of triple-posting. - Mike
|
|
|
![]()
Post
#23
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
Posts merged.
|
|
|
![]()
Post
#24
|
|
Blazed ![]() ![]() ![]() ![]() Group: Member Posts: 294 Joined: Jun 2009 Member No: 732,840 ![]() |
is for a DIV or a regular layout?????
|
|
|
![]()
Post
#25
|
|
Blazed ![]() ![]() ![]() ![]() Group: Member Posts: 294 Joined: Jun 2009 Member No: 732,840 ![]() |
it says i should hide anything....but if i want to make a div, how do i do it?
|
|
|
![]()
Post
#26
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
Since you're limited with which elements you can hide, I recommend just covering up the tables on your page using your layout design.
|
|
|
![]()
Post
#27
|
|
Blazed ![]() ![]() ![]() ![]() Group: Member Posts: 294 Joined: Jun 2009 Member No: 732,840 ![]() |
like how? make a big templete and just cover it up
and then add the div image on top? |
|
|
![]()
Post
#28
|
|
Member ![]() ![]() Group: Member Posts: 19 Joined: Aug 2009 Member No: 742,073 ![]() |
anyone have a completed band page done?
and a copy of the source code? some parts are a bit hard to figure out without screenshots. took me a bit to figure out why the header was so low on the page, and then i realised i was an idiot. ![]() so for anyone having trouble w/ the header this is what i got: ![]() and the only code i have on the bio page: CODE <style> .profileWidth table { margin-bottom:256px; width:800px; } .rail { display:none; } .gap { background:url() top left no-repeat; width:810px; height:256ppx; position:absolute; top:0; left:50%; margin:0px 0 -400px -256px; </style> <div class="gap"></div> <style> .topbanner {position:absolute; left:50%; top: 170px; margin-left: -405px; _margin-left:-50 px; width:; height:px; z-index:1;} </style> <div class="topbanner"> <img src="http://www.rocketnight.com/images/myspace/header.png" border="0px" /> </div> hopefully this helps anyone else who was lost. compare mine with step one and it should clear it up. (great tut so far btw)
Reason for edit: Merged posts. Use the edit button if you want to edit your previous post. - TJ
|
|
|
![]()
Post
#29
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 7,063 Joined: Jul 2008 Member No: 670,288 ![]() |
Posts Merged.
|
|
|
![]()
Post
#30
|
|
Newbie ![]() Group: Member Posts: 7 Joined: Jun 2009 Member No: 734,820 ![]() |
hey mike, tj told me to comment on here and you could help me,
i am having so much trouble doing the rollovers, but i do not feel comfortable posting my code on here. is there a way i can talk to you on msn messenger or over myspace about this? message me back on here not in comment |
|
|
![]()
Post
#31
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
Thanks for that, Thesnowpirate. Keep it up. Fromshiptoshore, how about sending me your codes so you don't have to put it up? It will be difficult trying to identify the issue if I have nothing to look through.
|
|
|
![]()
Post
#32
|
|
Blazed ![]() ![]() ![]() ![]() Group: Member Posts: 294 Joined: Jun 2009 Member No: 732,840 ![]() |
1. whats a good, document size for the layout?
2. what should a banner say when your just getting noticed? and gonna keep the layout for a while, so what should it say. listen to "one" song, ? or just say "official myspace page" ?? 3.how mayne sections should the div have? updates, (upcoming shows?) friends&&comments, about the band pictures, anything alse im missing???? and can i add "from the fans" so i can put the hacks and fan sigs on? |
|
|
![]()
Post
#33
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
Those are all subjective. It's up to you how you want your page to look and what you'd like to have on there. If you want to get a feel of how music pages look, just check out the pages of other artists. Personally, I'd put "Listen to This Track" instead of "Official MySpace Page". A fans section would be a great addition, but you definitely need to put up essential content. The tables you listed should do.
|
|
|
![]()
Post
#34
|
|
Blazed ![]() ![]() ![]() ![]() Group: Member Posts: 294 Joined: Jun 2009 Member No: 732,840 ![]() |
i have been looking around,
i wanna start making it. but the document size is leaving me stuck.. |
|
|
![]()
Post
#35
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
How can you be stuck? You're making the design; you can decide how big or small you want it to be at any stage of the building process.
|
|
|
![]()
Post
#36
|
|
Member ![]() ![]() Group: Member Posts: 19 Joined: Aug 2009 Member No: 742,073 ![]() |
i kind of been making my own, and after testing a few sizes, 800 seems to be the best width. the height of course depends on how much content youre putting in between everything.
to be more specific, the image im working on is 2240 wide, including the background. i think thats probably a good place to start. ive dabbled a little bit before but never have made a full blown pro-coded page, which is waht im working on. so try making a new document 2240x 500 or so to start and work your way through. but be sure when you slice later that you make a new doc of just 800x500, and the background is its own seperate file. definitely start with understanding everything thats on top of the player itself and leave the extra stuff for later. ive gone and looked through about 30 pro myspaces between last night and today and using A1Bassline's stuff as a reference, ive really pulled stuff together (coding wise). EDIT: so heres what i got after more playing. i basically stole to code from paramores myspace ( www.myspace.com/paramore ) using bassline's stuff as a reference, and rebuilt the table they had in photoshop/notepad with my own little design for learning purposes. and i gotta thank bassline for the first post. live page (will stay this way until i fix the space at the bottom): http://www.myspace.com/thesnowpirates snapshot: ![]() code (put in influences, i put a couple comment tags in there to let you know whats what w/ the css): CODE <style> { moving the player} div[id="profile_mp3Player"], table table td.text object {position:relative!important; top: -15px; left: 50%; left:7px; _left:16px; z-index:9;} {hiding stuff} .contactTable{ display: none;} .orangetext15{ display: none;} .whitetext12{ display: none;} .nametext{ display: none;} {NavBar all of this is ok makes it clear and changes font} table table div embed, table table div object{ position:relative; z-index:9;} table table table table, table table table td{ background-image:none; background-color:transparent;} table, tr, td{ background-color:transparent; border-style:none;} div.profileWidth div ul li a { font-family:Verdana; font-size:9px; font-weight:bold; color:FFFFFF !important; z-index: 9;} div.profileWidth div ul li a:hover { color:FFFFFF !important; background-color:000000 !important; display:block; z-index: 9;} div.profileWidth div.clearfix, .i i i { background-image:transparent !important; z-index: 9;} .i { display:none;} div.profileWidth table td ul *,div.clearfix i i i { color: 000000 !important font-family:verdana !important; font-size:9px !important; font-weight:bold !important; z-index: 9;} {Body} body table{ margin-top: 330px; margin-bottom:0px;} body div table, body table table, body td table{ margin-top:0px;} body{ background-image: URL('http://www.rocketnight.com/images/myspace/test1/grassbg.jpg'); background-position:center; background-repeat:repeat-y; background-attachment: fixed; background-color: f0efed;} {main banner or table height auto keeps it fine} div.topbanner { width: 870px; height: auto; top: -2px; margin-left: -435px; _margin-left: -435px; left: 50%; position: absolute; align: center; z-index: 3; overflow: hidden; background-color: FFFFFF;} } {end banner} </style> <div class="topbanner"> <center> <table id="Table_01" width="870" border="0" cellpadding="0" cellspacing="0"> .. <tr> <td colspan="22"><img src="http://www.rocketnight.com/images/myspace/test1/header_01.jpg" width="870" height="118" alt="" /></td> </tr> <tr> <td colspan="22"><a href="http://www.msplinks.com/MDFodHRwOi8vd3d3Lm15c3BhY2UuY29t"></a><img src="http://www.rocketnight.com/images/myspace/test1/header_03.jpg" width="870" height="28" alt="" /><a href="http://www.msplinks.com/MDFodHRwOi8vd3d3LmZ1ZWxlZGJ5cmFtZW4uY29t" target="_blank"></a></td> </tr> <tr> <td colspan="22"><img src="http://www.rocketnight.com/images/myspace/test1/header_05.jpg" width="870" height="32" alt="" /></td> </tr> <tr> <td height="211" colspan="22"><a href="http://www.msplinks.com/MDFodHRwOi8vd3d3LnBhcmFtb3JlLm5ldC9zaG93cw ==" target="_blank"><center><img src="http://www.rocketnight.com/images/myspace/header.png" width="810" height="256" border="0" /><center></td> </tr> <tr> <td height="29" colspan="22"> </td> </tr> <tr> <td colspan="22"><img src="http://www.rocketnight.com/images/myspace/test1/header_29.jpg" width="870" height="17" alt="" /></td> </tr> <tr> <td colspan="4" rowspan="2"><img src="http://www.rocketnight.com/images/myspace/test1/header_30.jpg" width="29" height="242" alt="" /></td> <td colspan="5"><a href="http://viewmorepics.myspace.com/index.cfm? fuseaction=user.viewAlbums&friendID=11730869"> <img src="http://www.rocketnight.com/images/myspace/test1/default_photo.jpg" width="324" height="222" border="0" alt="" /></a></td> <td colspan="2" rowspan="2"><img src="http://www.rocketnight.com/images/myspace/test1/header_32.jpg" width="13" height="242" alt="" /></td> <td colspan="11" rowspan="5"><img src="http://www.rocketnight.com/images/myspace/test1/header_33.jpg" width="504" height="369" alt="" /></td> </tr> <tr> <td colspan="3"><img src="http://www.rocketnight.com/images/myspace/test1/header_34.jpg" width="164" height="20" alt="" /></td> <td width="81"><a href="http://viewmorepics.myspace.com/index.cfm? fuseaction=user.viewAlbums&friendID=11730869"> <img src="http://www.rocketnight.com/images/myspace/test1/view_photos.jpg" width="81" height="20" border="0" alt="" /></a></td> <td width="79"><a href="http://vids.myspace.com/index.cfm? fuseaction=vids.showvids&friendID=11730869&n=11730869"> <img src="http://www.rocketnight.com/images/myspace/test1/view_videos.jpg" width="79" height="20" border="0" alt="" /></a></td> </tr> <tr> <td colspan="11"><img src="http://www.rocketnight.com/images/myspace/test1/header_37.jpg" width="366" height="48" alt="" /></td> </tr> <tr> <td colspan="3" rowspan="4"><img src="http://www.rocketnight.com/images/myspace/test1/header_38.jpg" width="20" height="157" alt="" /></td> <td colspan="3"><a href="http://www.msplinks.com/MDFodHRwOi8vbWVzc2FnaW5nLm15c3BhY2UuY29tL2 luZGV4LmNmbT9mdXNlYWN0aW9uPW1haWwubWVzc2FnZSZmcmllbmRJRD0xMTczMDg2OQ=="> <img src="http://www.rocketnight.com/images/myspace/test1/send_message.jpg" width="169" height="39" border="0" alt="" /></a></td> <td colspan="5"><a href="http://www.msplinks.com/MDFodHRwOi8vbWVzc2FnaW5nLm15c3BhY2UuY29tL2 luZGV4LmNmbT9mdXNlYWN0aW9uPW1haWwuZm9yd2FyZCZmcmllbmRJRD0xMTczMDg2OSZmPW ZvcndhcmRwcm9maWxl"> <img src="http://www.rocketnight.com/images/myspace/test1/forward_to_friends. jpg" width="177" height="39" border="0" alt="" /></a></td> </tr> <tr> <td colspan="3"><a href="http://www.msplinks.com/MDFodHRwOi8vZnJpZW5kcy5teXNwYWNlLmNvbS9pbm RleC5jZm0/ZnVzZWFjdGlvbj1pbnZpdGUuYWRkZnJpZW5kX3ZlcmlmeSZmcmllbmRJZD0xMT czMDg2OQ=="> <img src="http://www.rocketnight.com/images/myspace/test1/add_to_friends.jpg" width="169" height="40" border="0" alt="" /></a></td> <td colspan="5"><a href="http://www.msplinks.com/MDFodHRwOi8vcHJvZmlsZWVkaXQubXlzcGFjZS5jb2 0vaW5kZXguY2ZtP2Z1c2VhY3Rpb249dXNlci5hZGRUb0Zhdm9yaXRlJmZyaWVuZElEPTExNz MwODY5JnB1YmxpYz0w"> <img src="http://www.rocketnight.com/images/myspace/test1/add_to_favorites.jp g" width="177" height="40" border="0" alt="" /></a></td> </tr> <tr> <td colspan="3"><a href="http://www.myspace.com/.. %20MySpace.invokeWebIMWrapper();"> <img src="http://www.rocketnight.com/images/myspace/test1/instant_message.jpg " width="169" height="39" border="0" alt="" /></a></td> <td colspan="5"><a href="http://www.msplinks.com/MDFodHRwOi8vY29sbGVjdC5teXNwYWNlLmNvbS9pbm RleC5jZm0/ZnVzZWFjdGlvbj1SYXRlSW1hZ2UuVXNlclJhdGluZyZVc2VySUQ9MTE3MzA4Nj k="> <img src="http://www.rocketnight.com/images/myspace/test1/rank_user.jpg" width="177" height="39" border="0" alt="" /></a></td> <td colspan="11" rowspan="2"><img src="http://www.rocketnight.com/images/myspace/test1/shows.jpg" width="504" height="78" alt="" /></td> </tr> <tr> <td colspan="3"><a href="http://www.msplinks.com/MDFodHRwOi8vZ3JvdXBzLm15c3BhY2UuY29tL2luZG V4LmNmbT9mdXNlYWN0aW9uPWdyb3Vwcy5hZGR0b2dyb3VwJmZyaWVuZElEPTExNzMwODY5"> <img src="http://www.rocketnight.com/images/myspace/test1/add_to_group.jpg" width="169" height="39" border="0" alt="" /></a></td> <td colspan="5"><a href="http://www.msplinks.com/MDFodHRwOi8vZnJpZW5kcy5teXNwYWNlLmNvbS9pbm RleC5jZm0/ZnVzZWFjdGlvbj1ibG9jay5ibG9ja3VzZXImdXNlcklEPTExNzMwODY5"> <img src="http://www.rocketnight.com/images/myspace/test1/block_user.jpg" width="177" height="39" border="0" alt="" /></a></td> </tr> <tr> <td width="6"><img src="http://www.rocketnight.com/images/myspace/test1/spacer(1).gif" width="6" height="1" alt="" /></td> <td width="4"><img src="http://www.rocketnight.com/images/myspace/test1/spacer(1).gif" width="4" height="1" alt="" /></td> <td width="10"><img src="http://www.rocketnight.com/images/myspace/test1/spacer(1).gif" width="10" height="1" alt="" /></td> <td width="9"><img src="http://www.rocketnight.com/images/myspace/test1/spacer(1).gif" width="9" height="1" alt="" /></td> <td width="67"><img src="http://www.rocketnight.com/images/myspace/test1/spacer(1).gif" width="67" height="1" alt="" /></td> <td width="93"><img src="http://www.rocketnight.com/images/myspace/test1/spacer(1).gif" width="93" height="1" alt="" /></td> <td width="4"><img src="http://www.rocketnight.com/images/myspace/test1/spacer(1).gif" width="4" height="1" alt="" /></td> <td><img src="http://www.rocketnight.com/images/myspace/test1/spacer(1).gif" width="81" height="1" alt="" /></td> <td><img src="http://www.rocketnight.com/images/myspace/test1/spacer(1).gif" width="79" height="1" alt="" /></td> <td width="3"><img src="http://www.rocketnight.com/images/myspace/test1/spacer(1).gif" width="3" height="1" alt="" /></td> <td width="10"><img src="http://www.rocketnight.com/images/myspace/test1/spacer(1).gif" width="10" height="1" alt="" /></td> <td width="2"><img src="http://www.rocketnight.com/images/myspace/test1/spacer(1).gif" width="2" height="1" alt="" /></td> <td width="9"><img src="http://www.rocketnight.com/images/myspace/test1/spacer(1).gif" width="9" height="1" alt="" /></td> <td width="95"><img src="http://www.rocketnight.com/images/myspace/test1/spacer(1).gif" width="95" height="1" alt="" /></td> <td width="62"><img src="http://www.rocketnight.com/images/myspace/test1/spacer(1).gif" width="62" height="1" alt="" /></td> <td width="39"><img src="http://www.rocketnight.com/images/myspace/test1/spacer(1).gif" width="39" height="1" alt="" /></td> <td width="129"><img src="http://www.rocketnight.com/images/myspace/test1/spacer(1).gif" width="129" height="1" alt="" /></td> <td width="34"><img src="http://www.rocketnight.com/images/myspace/test1/spacer(1).gif" width="34" height="1" alt="" /></td> <td width="85"><img src="http://www.rocketnight.com/images/myspace/test1/spacer(1).gif" width="85" height="1" alt="" /></td> <td><img src="http://www.rocketnight.com/images/myspace/test1/spacer(1).gif" width="1" height="1" alt="" /></td> <td width="38"><img src="http://www.rocketnight.com/images/myspace/test1/spacer(1).gif" width="38" height="1" alt="" /></td> <td width="10"><img src="http://www.rocketnight.com/images/myspace/test1/spacer(1).gif" width="10" height="1" alt="" /></td> <td width="1"></td> </tr> .. </table> </center> </div> some stuff gets repeated, and some stuff probably isnt neccessary. i hope this helps anyone else. the only thing i cant figure out, and it happens on paramores myspace as well, is why there is so much extra space at the bottom under the comments. anyone have any ideas? This post has been edited by A1Bassline: Aug 16 2009, 11:15 AM
Reason for edit: Please use [codebox][/codebox] tags when posting long codes. Thanks. - TJ
|
|
|
![]()
Post
#37
|
|
Blazed ![]() ![]() ![]() ![]() Group: Member Posts: 294 Joined: Jun 2009 Member No: 732,840 ![]() |
whats the width and height of the music player?
|
|
|
![]()
Post
#38
|
|
Newbie ![]() Group: Member Posts: 5 Joined: Aug 2009 Member No: 742,390 ![]() |
Er...I'm having a bit of trouble on the custom left side thing, I'm not too good with dimensions and honestly this is my first time coding, so what are good dimensions? Like an example?
|
|
|
![]()
Post
#39
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 7,063 Joined: Jul 2008 Member No: 670,288 ![]() |
i kind of been making my own, and after testing a few sizes, 800 seems to be the best width. the height of course depends on how much content youre putting in between everything. to be more specific, the image im working on is 2240 wide, including the background. i think thats probably a good place to start. ive dabbled a little bit before but never have made a full blown pro-coded page, which is waht im working on. so try making a new document 2240x 500 or so to start and work your way through. but be sure when you slice later that you make a new doc of just 800x500, and the background is its own seperate file. definitely start with understanding everything thats on top of the player itself and leave the extra stuff for later. ive gone and looked through about 30 pro myspaces between last night and today and using A1Bassline's stuff as a reference, ive really pulled stuff together (coding wise). EDIT: so heres what i got after more playing. i basically stole to code from paramores myspace ( www.myspace.com/paramore ) using bassline's stuff as a reference, and rebuilt the table they had in photoshop/notepad with my own little design for learning purposes. and i gotta thank bassline for the first post. live page (will stay this way until i fix the space at the bottom): http://www.myspace.com/thesnowpirates code (put in influences, i put a couple comment tags in there to let you know whats what w/ the css) some stuff gets repeated, and some stuff probably isnt neccessary. i hope this helps anyone else. the only thing i cant figure out, and it happens on paramores myspace as well, is why there is so much extra space at the bottom under the comments. anyone have any ideas? That's because you aren't using my codes, like I suggested and recommended. I recommended you stuck with my codes so problems like this didn't have to be dealt with. The body table code was used and that creates a big space at the bottom. whats the width and height of the music player? 425px wide 345px high Er...I'm having a bit of trouble on the custom left side thing, I'm not too good with dimensions and honestly this is my first time coding, so what are good dimensions? Like an example? In my tutorial, I said 325px is the best width. Height doesn't matter. Just set the height in the div layer to autopx. That's what I do. |
|
|
![]()
Post
#40
|
|
Newbie ![]() Group: Member Posts: 1 Joined: Aug 2009 Member No: 742,441 ![]() |
Adding a Top Banner tutorial is great and it really help me but when I set my top banner logo and clicked preview all was great but I can't submit or edit.what ever of those two I click nothing happens :S what's wrong and how to fix it? I use this setup CODE <style> .profileWidth table { margin-bottom:800px; width:600px; } .rail { display:none; } .gap { background:url(myimage) top left no-repeat; width:900px; height:1150px; position:absolute; top:175; left:115%; margin:0px 0 -400px -1150px </style> <div class="gap"></div> I got it what did I do wrong.the width:900px; height:1150px was the problem :] I just put it on width:600px; height:800px and now is good.thanks again! keep up the good work |
|
|
![]()
Post
#41
|
|
Newbie ![]() Group: Member Posts: 5 Joined: Aug 2009 Member No: 742,390 ![]() |
Okay, again with the custom left side...is there any way I can turn some of the images into links? to like pictures and add to friends and stuff?
|
|
|
![]()
Post
#42
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 7,063 Joined: Jul 2008 Member No: 670,288 ![]() |
tutorial is great and it really help me but when I set my top banner logo and clicked preview all was great but I can't submit or edit.what ever of those two I click nothing happens :S what's wrong and how to fix it? I use this setup I got it what did I do wrong.the width:900px; height:1150px was the problem :] I just put it on width:600px; height:800px and now is good.thanks again! keep up the good work Getting Started Here is a list of things you might want consider using to make your layout: Adobe Photoshop CS4 Adobe Illustrator CS4 GIMP Notepad Some of this tutorial will be based on Adobe Photoshop CS4, but the steps are optional, so you don't have to follow those steps. Before we even start making the layout, make sure you have everything prepared for the layout. Make sure you get rid of all of your current coding on your MySpace, but make sure you do all of your editing in Safe Mode. If you don't do editing in Safe Mode, you will not be able to save your changes. Also, make sure you have your images ready to put on the layout. You will want to have your pictures all uploaded, unless you are looking into slicing images, then you'll have to upload as you go along. Here are some websites you can use to upload your pictures.In my opinion, I would recommend using webs, because Photobucket and Imageshack aren't that reliable. Okay, again with the custom left side...is there any way I can turn some of the images into links? to like pictures and add to friends and stuff? Slicing Images This is an optional part of the tutorial. Slicing images will help greatly with your images loading faster, and it also helps add links to images, since imagemapping will not work on band layouts. For more information on this, check out my tutorial on how to slice images and add links. |
|
|
![]()
Post
#43
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
Okay, again with the custom left side...is there any way I can turn some of the images into links? to like pictures and add to friends and stuff? Just use a link code with the image code, like this: CODE <a href="URL"><img src="URL" alt="" /></a> Replace the first URL with the page you want the link to go and the second URL with the image you want to use. |
|
|
![]()
Post
#44
|
|
Newbie ![]() Group: Member Posts: 5 Joined: Aug 2009 Member No: 742,390 ![]() |
Sorry, lol, I'm new to CSS and DIVs and everything. I just did the slicing tutorial and everything and was wondering if there was any way to get the table code to appear where the top banner would?
|
|
|
![]()
Post
#45
|
|
![]() Creative Developer ![]() ![]() ![]() ![]() Group: Member Posts: 116 Joined: Jan 2009 Member No: 712,281 ![]() |
^ yes, once you get all the image urls in the slice table, copy the whole table (from the first table tag to the second one) and put it where your top image is.
if you used tjs tutorial i think the class is .topbanner im pretty sure he goes over it in his slice tutorial though, but i could be wrong. |
|
|
![]()
Post
#46
|
|
Newbie ![]() Group: Member Posts: 5 Joined: Aug 2009 Member No: 742,390 ![]() |
You mean between the divclass=topbanner? or what? Could I please get an example of what the code should look like?
|
|
|
![]()
Post
#47
|
|
Member ![]() ![]() Group: Member Posts: 16 Joined: Nov 2008 Member No: 697,160 ![]() |
This tutorial is very good on how to really get started with coding a band layout. But I am sorry to say, that by uploading images to webs.com just for hosting them without having a website open through them, is against the terms of service, and will delete your account without warning. They have done it to me before. Just something i think you should have included.
![]() -Brandon L -Revolutions Designs |
|
|
![]()
Post
#48
|
|
![]() Creative Developer ![]() ![]() ![]() ![]() Group: Member Posts: 116 Joined: Jan 2009 Member No: 712,281 ![]() |
|
|
|
![]()
Post
#49
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 7,063 Joined: Jul 2008 Member No: 670,288 ![]() |
This tutorial is very good on how to really get started with coding a band layout. But I am sorry to say, that by uploading images to webs.com just for hosting them without having a website open through them, is against the terms of service, and will delete your account without warning. They have done it to me before. Just something i think you should have included. ![]() -Brandon L -Revolutions Designs I have multiple accounts open with them and they've been active for almost two years without any sort of website, and I haven't been deleted. |
|
|
![]()
Post
#50
|
|
Newbie ![]() Group: Member Posts: 5 Joined: Aug 2009 Member No: 742,390 ![]() |
|
|
|
![]()
Post
#51
|
|
Member ![]() ![]() Group: Member Posts: 19 Joined: Aug 2009 Member No: 742,073 ![]() |
whats the best way for positioning the player?
|
|
|
![]()
Post
#52
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
Try using my code.
|
|
|
![]()
Post
#53
|
|
Member ![]() ![]() Group: Member Posts: 19 Joined: Aug 2009 Member No: 742,073 ![]() |
Try using my code. thanks for that, i had been messing with a similar code. but i was able to figure out the whole 50% thing with yours, so thanks. i still cant get it to align vertically in all browsers. i know there has to be a good way to do it, http://myspace.com/startingoverrocks stays in the same spot on all browsers. the only idea i could think of was that if it was going by percents, and the page would stay the same height everytime because it had 50 comments displayed, so it would always be the same percentage from the top. or is that just wrong? anyone have any comments? edit: also, im re-reading through the tutorial, unless its just called something else, how do i move everything behind the table i made down? (blog comments, everything that you would normally see. not remove anything, just move it all down. do i have to move it by each section?) see: http://www.myspace.com/thesnowpirates only code (as taken from the first / second step) CODE <style>
object {position:absolute; height:295px; width:350px; left:50%; z-index:9;} object {top:250px!important; margin-left:-400px!important;} object object, td td td object, embed {position:static; margin:auto!important;}} .orangetext15 {display: none;} .whitetext12 {display: none;} table table div embed, table table div object {position:relative; z-index:9;} table, tr, td{ background-color:transparent; border-style:none; } body { background-color: 000000; background-image:url(http://rocketnight.com/images/myspace/heymonday/hmbg.jpg); background-position: top center; background-repeat: no-repeat; background-attachment: scroll; } table table table table, table table table td{ background-image:none; background-color:transparent; } body, div, p, strong, td, .text, .blacktext10, .blacktext12, a.searchlinkSmall, a.searchlinkSmall:link, a.searchlinkSmall:visited{ color:FFFFFF; font-size:9pt; line-height: 10pt; font-weight:normal; font-style:normal; text-decoration:none; text-transform:none; font-family:Helvetica Narrow, sans-serif; } strong, .lightbluetext8, .btext, .redtext, .redbtext{ color:666666; font-size:9pt; font-weight:normal; font-style:normal; text-decoration:none; text-transform:none; font-family:Helvetica Narrow, sans-serif; } a font, a:link, a:visited, a.navbar, a.navbar:link, a.navbar:visited, a.man, a.man:link, a.man:visited, a.man font, a.redlink, a.redlink:visited{ color:FFFFFF; font-size:9pt; font-weight:normal; font-style:normal; text-decoration:none ; text-transform:none; font-family:Helvetica Narrow, sans-serif; } a { color: 000000 !important; font-family: Arial !important; } a:hover { color: 666666 !important; font-family: Arial !important; } a:hover, a:hover font, a:active, a.navbar:hover, a.navbar:active, a.man:hover, a.man:active, a.man:hover font, a.searchlinkSmall:hover, a.searchlinkSmall:active, a.redlink:hover, a.redlink:hover{ color:666666; font-size:9pt; font-weight:normal; font-style:normal; text-decoration:normal ; text-transform:none; font-family:Helvetica Narrow, sans-serif; } table table table table, div table table table{ border-style:none; } div.topbanner { width: 908px; height: auto; top: -2px; margin-left: -440px; _margin-left: -440px; left: 49%; position: absolute; align: center; z-index: 3; overflow: hidden; background-color: FFFFFF;} } </style> <div class="topbanner"> <table id="Table_01" width="908" border="0" cellpadding="0" cellspacing="0"> <tr> <td colspan="3"> <img src="http://rocketnight.com/images/myspace/heymonday/slice_01.png" width="908" height="138" alt="" /></td> </tr> <tr> <td colspan="3"> <img src="http://rocketnight.com/images/myspace/heymonday/slice_02.png" width="908" height="38" alt="" /></td> </tr> <tr> <td colspan="3"> <img src="http://rocketnight.com/images/myspace/heymonday/slice_03.png" width="908" height="645" alt="" /></td> </tr> <tr> <td colspan="3"> <img src="http://rocketnight.com/images/myspace/heymonday/slice_04.png" width="908" height="53" alt="" /></td> </tr> <tr> <td colspan="3"> <img src="http://rocketnight.com/images/myspace/heymonday/slice_05.png" width="908" height="64" alt="" /></td> </tr> <tr> <td rowspan="8"> <img src="http://rocketnight.com/images/myspace/heymonday/slice_06.png" width="62" height="376" alt="" /></td> <td> <img src="http://rocketnight.com/images/myspace/heymonday/slice_07.png" width="327" height="58" alt="" /></td> <td rowspan="7"> <img src="http://rocketnight.com/images/myspace/heymonday/slice_08.png" width="519" height="325" alt="" /></td> </tr> <tr> <td> <a href="http://www.msplinks.com/MDFodHRwOi8vZnJpZW5kcy5teXNwYWNlLmNvbS9pbmRleC5jZm0/ZnVzZWFjdGlvbj1pbnZpdGUuYWRkZnJpZW5kX3ZlcmlmeSZmcmllbmRJZD0zMDcwODI1NTI="> <img src="http://rocketnight.com/images/myspace/heymonday/Untitled-2_09.png" width="327" height="41" border="0" alt="" /></a></td> </tr> <tr> <td> <a href="http://www.msplinks.com/MDFodHRwOi8vbWVzc2FnaW5nLm15c3BhY2UuY29tL2luZGV4LmNmbT9mdXNlYWN0aW9uPW1haWwubWVz 2FnZSZmcmllbmRJRD0zMDcwODI1NTI="> <img src="http://rocketnight.com/images/myspace/heymonday/Untitled-2_10.png" width="327" height="46" border="0" alt="" /></a></td> </tr> <tr> <td> <a href="http://www.msplinks.com/MDFodHRwOi8vcHJvZmlsZWVkaXQubXlzcGFjZS5jb20vaW5kZXguY2ZtP2Z1c2VhY3Rpb249dXNlci5h GRUb0Zhdm9yaXRlJmZyaWVuZElEPTMwNzA4MjU1MiZwdWJsaWM9MA=="> <img src="http://rocketnight.com/images/myspace/heymonday/Untitled-2_11.png" width="327" height="48" border="0" alt="" /></a></td> </tr> <tr> <td> <a href="http://viewmorepics.myspace.com/index.cfm?fuseaction=user.viewAlbums&friendID=307082552"> <img src="http://rocketnight.com/images/myspace/heymonday/Untitled-2_12.png" width="327" height="43" border="0" alt="" /></a></td> </tr> <tr> <td> <a href="http://vids.myspace.com/index.cfm?fuseaction=vids.showvids&friendID=307082552&n=307082552"> <img src="http://rocketnight.com/images/myspace/heymonday/Untitled-2_13.png" width="327" height="50" border="0" alt="" /></a></td> </tr> <tr> <td> <a href="http://www.msplinks.com/MDFodHRwOi8vY29tbWVudC5teXNwYWNlLmNvbS9pbmRleC5jZm0/ZnVzZWFjdGlvbj11c2VyLnZpZXdQcm9maWxlX2NvbW1lbnRGb3JtJmZyaWVuZElEPTMwNzA4MjU1Mg=="> <img src="http://rocketnight.com/images/myspace/heymonday/Untitled-2_14.png" width="327" height="39" border="0" alt="" /></a></td> </tr> <tr> <td colspan="2"> <img src="http://rocketnight.com/images/myspace/heymonday/slice_15.png" width="846" height="51" alt="" /></td> </tr> <tr> <td colspan="3"> <img src="http://rocketnight.com/images/myspace/heymonday/slice_16.png" width="908" height="56" alt="" /></td> </tr> </table></div> |
|
|
![]()
Post
#54
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
That won't work because each comment has an indefinite height. Are you only having problems on Firefox? It might just shift upward on there because you have AdBlock Plus installed and enabled.
|
|
|
![]()
Post
#55
|
|
Member ![]() ![]() Group: Member Posts: 19 Joined: Aug 2009 Member No: 742,073 ![]() |
im actually testing it in:
Firefox Version: 3.52 Chrome Verion: 2.0.172.39 Internet Explorer Version: 8.0.7100.0 As it is right now, in Chrome its the highest (vertically). FF and IE display it at the same height, but IE has it moved over slightly to the right (about 15-20 pixels) I dont have any adblock or any extensions that would change the conent on the page. I only have Nod32 live, and after i read your post, i disabled it and refreshed, and all pages stayed the same. What about if i were to bound the player in a table? or is that not possible? |
|
|
![]()
Post
#56
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
Unfortunately, that's not possible. Do you mind posting a link to your page?
|
|
|
![]()
Post
#57
|
|
Member ![]() ![]() Group: Member Posts: 19 Joined: Aug 2009 Member No: 742,073 ![]() |
http://www.myspace.com/thesnowpirates
im just practicing. i got that photo from picture. its just a fake myspace. |
|
|
![]()
Post
#58
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
Try replacing the codes you posted with this:
CODE <style>
object {position:absolute; height:295px; width:350px; left:50%; z-index:9;} object {top:250px!important; margin-left:-400px!important;} object object, td td td object, embed {position:static; margin:auto!important;} .orangetext15 {display: none;} .whitetext12 {display: none;} table, tr, td{ background-color:transparent; border-style:none; } body { background-color: 000000; background-image:url(http://rocketnight.com/images/myspace/heymonday/hmbg.jpg); background-position: top center; background-repeat: no-repeat; background-attachment: scroll; } table table table table, table table table td{ background-image:none; background-color:transparent; } body, div, p, strong, td, .text, .blacktext10, .blacktext12, a.searchlinkSmall, a.searchlinkSmall:link, a.searchlinkSmall:visited{ color:FFFFFF; font-size:9pt; line-height: 10pt; font-weight:normal; font-style:normal; text-decoration:none; text-transform:none; font-family:Helvetica Narrow, sans-serif; } strong, .lightbluetext8, .btext, .redtext, .redbtext{ color:666666; font-size:9pt; font-weight:normal; font-style:normal; text-decoration:none; text-transform:none; font-family:Helvetica Narrow, sans-serif; } a font, a:link, a:visited, a.navbar, a.navbar:link, a.navbar:visited, a.man, a.man:link, a.man:visited, a.man font, a.redlink, a.redlink:visited{ color:FFFFFF; font-size:9pt; font-weight:normal; font-style:normal; text-decoration:none ; text-transform:none; font-family:Helvetica Narrow, sans-serif; } a { color: 000000 !important; font-family: Arial !important; } a:hover { color: 666666 !important; font-family: Arial !important; } a:hover, a:hover font, a:active, a.navbar:hover, a.navbar:active, a.man:hover, a.man:active, a.man:hover font, a.searchlinkSmall:hover, a.searchlinkSmall:active, a.redlink:hover, a.redlink:hover{ color:666666; font-size:9pt; font-weight:normal; font-style:normal; text-decoration:normal ; text-transform:none; font-family:Helvetica Narrow, sans-serif; } table table table table, div table table table{ border-style:none; } div.topbanner { width: 908px; height: auto; top: -2px; margin-left: -440px; _margin-left: -440px; left: 49%; position: absolute; align: center; z-index: 3; overflow: hidden; background-color: FFFFFF;} } </style> <div class="topbanner"> <table id="Table_01" width="908" border="0" cellpadding="0" cellspacing="0"> <tr> <td colspan="3"> <img src="http://rocketnight.com/images/myspace/heymonday/slice_01.png" width="908" height="138" alt="" /></td> </tr> <tr> <td colspan="3"> <img src="http://rocketnight.com/images/myspace/heymonday/slice_02.png" width="908" height="38" alt="" /></td> </tr> <tr> <td colspan="3"> <img src="http://rocketnight.com/images/myspace/heymonday/slice_03.png" width="908" height="645" alt="" /></td> </tr> <tr> <td colspan="3"> <img src="http://rocketnight.com/images/myspace/heymonday/slice_04.png" width="908" height="53" alt="" /></td> </tr> <tr> <td colspan="3"> <img src="http://rocketnight.com/images/myspace/heymonday/slice_05.png" width="908" height="64" alt="" /></td> </tr> <tr> <td rowspan="8"> <img src="http://rocketnight.com/images/myspace/heymonday/slice_06.png" width="62" height="376" alt="" /></td> <td> <img src="http://rocketnight.com/images/myspace/heymonday/slice_07.png" width="327" height="58" alt="" /></td> <td rowspan="7"> <img src="http://rocketnight.com/images/myspace/heymonday/slice_08.png" width="519" height="325" alt="" /></td> </tr> <tr> <td> <a href="http://www.msplinks.com/MDFodHRwOi8vZnJpZW5kcy5teXNwYWNlLmNvbS9pbmRleC5jZm0/ZnVzZWFjdGlvbj1pbnZpdGUuYWRkZnJpZW5kX3ZlcmlmeSZmcmllbmRJZD0zMDcwODI1NTI="> <img src="http://rocketnight.com/images/myspace/heymonday/Untitled-2_09.png" width="327" height="41" border="0" alt="" /></a></td> </tr> <tr> <td> <a href="http://www.msplinks.com/MDFodHRwOi8vbWVzc2FnaW5nLm15c3BhY2UuY29tL2luZGV4LmNmbT9mdXNlYWN0aW9uPW1haWwubWVz 2FnZSZmcmllbmRJRD0zMDcwODI1NTI="> <img src="http://rocketnight.com/images/myspace/heymonday/Untitled-2_10.png" width="327" height="46" border="0" alt="" /></a></td> </tr> <tr> <td> <a href="http://www.msplinks.com/MDFodHRwOi8vcHJvZmlsZWVkaXQubXlzcGFjZS5jb20vaW5kZXguY2ZtP2Z1c2VhY3Rpb249dXNlci5h GRUb0Zhdm9yaXRlJmZyaWVuZElEPTMwNzA4MjU1MiZwdWJsaWM9MA=="> <img src="http://rocketnight.com/images/myspace/heymonday/Untitled-2_11.png" width="327" height="48" border="0" alt="" /></a></td> </tr> <tr> <td> <a href="http://viewmorepics.myspace.com/index.cfm?fuseaction=user.viewAlbums&friendID=307082552"> <img src="http://rocketnight.com/images/myspace/heymonday/Untitled-2_12.png" width="327" height="43" border="0" alt="" /></a></td> </tr> <tr> <td> <a href="http://vids.myspace.com/index.cfm?fuseaction=vids.showvids&friendID=307082552&n=307082552"> <img src="http://rocketnight.com/images/myspace/heymonday/Untitled-2_13.png" width="327" height="50" border="0" alt="" /></a></td> </tr> <tr> <td> <a href="http://www.msplinks.com/MDFodHRwOi8vY29tbWVudC5teXNwYWNlLmNvbS9pbmRleC5jZm0/ZnVzZWFjdGlvbj11c2VyLnZpZXdQcm9maWxlX2NvbW1lbnRGb3JtJmZyaWVuZElEPTMwNzA4MjU1Mg=="> <img src="http://rocketnight.com/images/myspace/heymonday/Untitled-2_14.png" width="327" height="39" border="0" alt="" /></a></td> </tr> <tr> <td colspan="2"> <img src="http://rocketnight.com/images/myspace/heymonday/slice_15.png" width="846" height="51" alt="" /></td> </tr> <tr> <td colspan="3"> <img src="http://rocketnight.com/images/myspace/heymonday/slice_16.png" width="908" height="56" alt="" /></td> </tr> </table></div> |
|
|
![]()
Post
#59
|
|
Member ![]() ![]() Group: Member Posts: 19 Joined: Aug 2009 Member No: 742,073 ![]() |
|
|
|
![]()
Post
#60
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
On this bit here:
CODE object object, td td td object, embed {position:static; margin:auto!important;}} .orangetext15 {display: none;} .whitetext12 {display: none;} table table div embed, table table div object {position:relative; z-index:9;} I removed the extra closing bracket on the first line and the whole last line. |
|
|
![]()
Post
#61
|
|
![]() Newbie ![]() Group: Member Posts: 9 Joined: Dec 2008 Member No: 704,984 ![]() |
this is awesome!!
|
|
|
![]()
Post
#62
|
|
Newbie ![]() Group: Member Posts: 1 Joined: Sep 2009 Member No: 744,694 ![]() |
I'm trying to add a banner under the nav with my own nav buttons. Not sure where to place my code in yours.
|
|
|
![]()
Post
#63
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 7,063 Joined: Jul 2008 Member No: 670,288 ![]() |
http://www.createblog.com/forums/index.php...t&p=3220146
Follow that step. You put your codes in-between the set of DIV tags I provide in that post. |
|
|
![]()
Post
#64
|
|
![]() Senior Member ![]() ![]() ![]() ![]() Group: Member Posts: 253 Joined: Jul 2009 Member No: 739,898 ![]() |
Would love if rollover screen shots were working. >.<"
|
|
|
![]()
Post
#65
|
|
Newbie ![]() Group: Member Posts: 2 Joined: Sep 2009 Member No: 746,027 ![]() |
Hello, How can i hide the Navbar TOP ARTIST/SHOWS/FORUM ?
im doing all i can and the only thing i did is put this navigation bar more thin i used this code : <style> table td a.navbar{display:none!important;} </style> or if it is impossible how can i change the background color and font color? Thank you very much |
|
|
![]()
Post
#66
|
|
Member ![]() ![]() Group: Member Posts: 12 Joined: Jun 2009 Member No: 733,228 ![]() |
Amazing tutorial A1Bassline, you just earned my eternal gratitude
![]() ![]() Here's what my band's page looks like thanks to you: Enamored's Myspace As you will see, i have yet to find how to modify the font color in the comments section since it was set to black when I added the "Comments" header, which makes it invisible, but i'm really satisfied with it, so thanks again ![]() Deammer |
|
|
![]()
Post
#67
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
Try adding this to your codes:
CODE <style> .friendsComments .columnsWidening {color:ffffff!important;} </style> That should make them show. |
|
|
![]()
Post
#68
|
|
Member ![]() ![]() Group: Member Posts: 12 Joined: Jun 2009 Member No: 733,228 ![]() |
I basically changed all the colors in the codes containing a ".friendsComments" division to white and now i can see the comments
![]() Thanks a lot Mike ! Deammer |
|
|
![]()
Post
#69
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
No problem. Good job with the page by the way.
|
|
|
![]()
Post
#70
|
|
Newbie ![]() Group: Member Posts: 1 Joined: Sep 2009 Member No: 746,663 ![]() |
So...I think like last week there was a link right at the beginning of this article basically saying, don't be an idiot and ask how to cover up the nav bar and myspace logo, here's how to do it. Now it's gone...so is that not allowed anymore or am I an idiot and don't know where to look?
|
|
|
![]()
Post
#71
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
That link was removed yesterday. If you want to hide everything on the top section except for the advertisement, try the code below:
CODE <style> .profile {display:none!important;} div div table div {display:none;} .clearfix table div div {display:block;} </style> That works on a regular 1.0 profile and an artist profile, except it doesn't hide the music navigation bar since that can't be removed. |
|
|
![]()
Post
#72
|
|
Newbie ![]() Group: Member Posts: 1 Joined: Sep 2009 Member No: 747,472 ![]() |
This has been by far the best help anywhere on the net to setting up my bands page but I am having problems with relocating my upcoming shows. I put in a code that I found elsewhere but for some reason all the DIV items I made get pushed down the page starting at the point where the upcoming shows table starts. I use IE and this may be why i dont know. If someone could help me that would be awesome here is my code:
CODE <style> .orangetext15 {display: none;} .whitetext12 {display: none;} table table div embed, table table div object {position:relative; z-index:9;}table, tr, td{ background-color:transparent; border-style:none; } body { margin-top: 700px; background-color: 000000; background-image:url(); background-position: top center; background-repeat: no-repeat; background-attachment: scroll; } table table table table, table table table td{ background-image:none; background-color:transparent; } body, div, p, strong, td, .text, .blacktext10, .blacktext12, a.searchlinkSmall, a.searchlinkSmall:link, a.searchlinkSmall:visited{ color:FFFFFF; font-size:9pt; line-height: 10pt; font-weight:normal; font-style:normal; text-decoration:none; text-transform:none; font-family:Helvetica Narrow, sans-serif; } strong, .lightbluetext8, .btext, .redtext, .redbtext{ color:666666; font-size:9pt; font-weight:normal; font-style:normal; text-decoration:none; text-transform:none; font-family:Helvetica Narrow, sans-serif; } a font, a:link, a:visited, a.navbar, a.navbar:link, a.navbar:visited, a.man, a.man:link, a.man:visited, a.man font, a.redlink, a.redlink:visited{ color:FFFFFF; font-size:9pt; font-weight:normal; font-style:normal; text-decoration:none ; text-transform:none; font-family:Helvetica Narrow, sans-serif; } a { color: FFFFFF !important; font-family: Arial !important; } a:hover { color: 666666 !important; font-family: Arial !important; } a:hover, a:hover font, a:active, a.navbar:hover, a.navbar:active, a.man:hover, a.man:active, a.man:hover font, a.searchlinkSmall:hover, a.searchlinkSmall:active, a.redlink:hover, a.redlink:hover{ color:666666; font-size:9pt; font-weight:normal; font-style:normal; text-decoration:normal ; text-transform:none; font-family:Helvetica Narrow, sans-serif; } table table table table, div table table table{ border-style:none; } .latestBlogEntry { position:absolute; top:970px; margin-left: -400px; left:50%; width: 325px; background-color: transparent; z-index: 9; } table .latestBlogEntry { width:325px!important; } td.text div { position:absolute; left:50%; top:1300px; margin-left:-400px; } td.text td div { position:absolute; margin-left:0px; } div.gap { background-color: 000000; top: 870px; left: 50%; margin-left: -400px; width: 800px; height: 50px; position: absolute; } div.leftcolumn { background-color: 000000; top: 920px; left: 50%; margin-left: -400px; width: 325px; height: 1000px; position: absolute; } div.borderleft { top: 4px; left: 50%; margin-left: -450px; width: 100%; height: px; position: absolute; } div.borderright{ top: 4px; left: 50%; margin-left: 400px; width: 100%; height: px; position: absolute; } div.youtube{ top: 4px; left: 50%; margin-left: -399px; width: 100%; height: px; position: absolute; } div.itunes{ top: 4px; left: 50%; margin-left: -233px; width: 100%; height: px; position: absolute; } div.facebook{ top: 4px; left: 50%; margin-left: -75px; width: 100%; height: px; position: absolute; } div.twitter{ top: 4px; left: 50%; margin-left: 92px; width: 100%; height: px; position: absolute; } div.merchstore{ top: 4px; left: 50%; margin-left: 255px; width: 100%; height: px; position: absolute; } div.maintitle{ top: 59px; left: 50%; margin-left: -399px; width: 100%; height: px; position: absolute; } div.message1{ top: 423px; left: 50%; margin-left: -399px; width: 100%; height: px; position: absolute; z-index:1; } div.message1 a:hover{ border-top: none; opacity: 0.0; filter: alpha(opacity=0);width: 0px; height: 0px; z-index:1; } div.message{ top: 423px; left: 50%; margin-left: -399px; width: 100%; height: px; position: absolute; } div.add{ top: 464px; left: 50%; margin-left: -399px; width: 100%; height: px; position: absolute; } div.comment{ top: 499px; left: 50%; margin-left: -399px; width: 100%; height: px; position: absolute; } div.forward{ top: 536px; left: 50%; margin-left: -399px; width: 100%; height: px; position: absolute; } div.favorite{ top: 573px; left: 50%; margin-left: -399px; width: 100%; height: px; position: absolute; } div.pics{ top: 615px; left: 50%; margin-left: -399px; width: 100%; height: px; position: absolute; } div.video{ top: 615px; left: 50%; margin-left: -313px; width: 100%; height: px; position: absolute; } div.lowertitle{ top: 423px; left: 50%; margin-left: -204px; width: 100%; height: px; position: absolute; } div.bottomborder{ top: 647px; left: 50%; margin-left: -399px; width: 100%; height: px; position: absolute; } </style> <div class="gap"></div> <div class="leftcolumn"></div> <div class="borderleft"><img src="http://i665.photobucket.com/albums/vv16/audiotestpage/Border_Left.jpg" /></div><br /> <div class="borderright"><img src="http://i665.photobucket.com/albums/vv16/audiotestpage/Border_Right.jpg" /></div><br /> <div class="youtube"><img src="http://i665.photobucket.com/albums/vv16/audiotestpage/Youtube.jpg" /></div><br /> <div class="itunes"><img src="http://i665.photobucket.com/albums/vv16/audiotestpage/iTunes.jpg" /></div><br /> <div class="facebook"><img src="http://i665.photobucket.com/albums/vv16/audiotestpage/facebook.jpg" /></div><br /> <div class="twitter"><img src="http://i665.photobucket.com/albums/vv16/audiotestpage/twitter.jpg" /></div><br /> <div class="merchstore"><img src="http://i665.photobucket.com/albums/vv16/audiotestpage/MerchStore-1.jpg" /></div><br /> <div class="maintitle"><img src="http://i665.photobucket.com/albums/vv16/audiotestpage/Main_Title.jpg" /></div><br /> <div class="message1"><a href="www.yahoo.com'><img src="></a></div><br /> <div class="message"><img src="http://i665.photobucket.com/albums/vv16/audiotestpage/Message.jpg" /></div><br /> <div class="add"><img src="http://i665.photobucket.com/albums/vv16/audiotestpage/Add.jpg" /></div><br /> <div class="comment"><img src="http://i665.photobucket.com/albums/vv16/audiotestpage/Comment.jpg" /></div><br /> <div class="forward"><img src="http://i665.photobucket.com/albums/vv16/audiotestpage/Forward.jpg" /></div><br /> <div class="favorite"><img src="http://i665.photobucket.com/albums/vv16/audiotestpage/Favorite.jpg" /></div><br /> <div class="pics"><img src="http://i665.photobucket.com/albums/vv16/audiotestpage/Pics.jpg" /></div><br /> <div class="video"><img src="http://i665.photobucket.com/albums/vv16/audiotestpage/Videos.jpg" /></div><br /> <div class="lowertitle"><img src="http://i665.photobucket.com/albums/vv16/audiotestpage/Lower_Title.jpg" /></div><br /> <div class="bottomborder"><img src="http://i665.photobucket.com/albums/vv16/audiotestpage/Border_Bottom.jpg" /></div><br /> Also if someone could help me with rollover a href pictures that would be awesome, cause I tried your code here as you may see with message and I can't wrap my head around it. I need it for all the following div's: message, add, comment, forward, favorite, pics and videos. |
|
|
![]()
Post
#73
|
|
Senior Member ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 1,237 Joined: May 2008 Member No: 648,123 ![]() |
A few things I feel should be updated (just suggestions).
1. In the first step, you're missing a closing bracket on the "gap" class. Browsers typically auto-close it with the </style> tag right after it, but some browsers won't know what to do with it. And since everyone is just copying and pasting, everyone is missing the closing bracket. 2. Instead of using font-size:1px; to hide fonts on headers, use text-indent:-9999em;. Giving a huge negative indentation drags the text completely off the left side of the screen. 3. Using absolute positioning for the shows header doesn't always work properly, depending on the way people code, and if Firefox users have Adblock Plus installed. I'd use this instead: CODE div .whitetext12 { background:url(URL); display:block; height:##px; text-indent:-9999em; width:##px; }
|
|
|
![]()
Post
#74
|
|
Member ![]() ![]() Group: Member Posts: 10 Joined: Sep 2009 Member No: 746,858 ![]() |
Hey guys, I'm having some trouble with my layout in IE.
It works perfectly in Firefox, but is all kinds of jacked up in IE. myspace.com/ineedtotestthis Any idea what would mess this stuff up as bad as it is? (It will constantly be changing because I'm tweaking things to try to figure it out) HELP! Thanks. |
|
|
![]()
Post
#75
|
|
![]() Senior Member ![]() ![]() ![]() ![]() Group: Member Posts: 253 Joined: Jul 2009 Member No: 739,898 ![]() |
^ Post your code so people can try and help you out.
|
|
|
![]()
Post
#76
|
|
Member ![]() ![]() Group: Member Posts: 10 Joined: Sep 2009 Member No: 746,858 ![]() |
Okay, so here's all of my code. It's probably too much and a little sloppy, but I've been tweaking this thing for awhile. Please help!
CODE <style>
.profileWidth table { margin-bottom:844px; width:800px; } .rail { display:none; } .gap { background:url() top left no-repeat; width:894px; height:844px; position:absolute; top:0; left:50%; margin:0px 0 -400px -496px; } .topbanner {position:absolute; left:50%; top:0px; margin-left:-400px; _margin-left:-401px; width:894; height:844px; z-index:1;} .menu { background:url() top left no-repeat; width:894px; height:844px; position:absolute; top:0; left:50%; margin:844px 0 -400px -449px; _margin:844px 0 -400px -450px; } .player { background:url() top left no-repeat; width:894px; height:844px; position:absolute; top:0; left:50%; margin:962px 0 -400px -449px; _margin:962px 0 -400px -450px; } .tg_left { position:absolute; top:1344px ; left:50%; margin-left:-449px; _margin-left:-450px; width:325px; height:800px; z-index:1; } .mike { position:absolute; top:1445px; left:50%; margin-left:-295px; _margin-left:-696px; _width:150px !important;text-align:center; _height:150px !important; z-index:2; } .conner { position:absolute; top:1685px; left:50%; margin-left:-295px; _margin-left:-696px; _width:150px !important;text-align:center; _height:150px !important; z-index:2; } .keenan { position:absolute; top:1925px; left:50%; margin-left:-295px; _margin-left:-696px; _width:150px !important;text-align:center; _height:150px !important; z-index:2; } .jj { position:absolute; top:2165px; left:50%; margin-left:-295px; _margin-left:-696px; _width:150px !important;text-align:center; _height:150px !important; z-index:2; } .ben { position:absolute; top:2405px; left:50%; margin-left:-295px; _margin-left:-696px; _width:150px !important;text-align:center; _height:150px !important; z-index:2; } .shows {position:absolute; top:1348px; left:50%; margin-left:1px; _margin-left:0px; width:325px; height:58px; z-index:1;} table table table table td.text span.whitetext12 { position: relative; top: 0px; display: block; left: 450px; visibility: visible; width: 1px; height: 0px; text-indent: -999999px; background: transparent url() bottom left no-repeat; } .twitter{ width:422px display:block; height:500px padding-top:20px; _padding-top:20px; margin-top:42px; margin-left:-318px; _margin-top:65px; _margin-left:-50px; _width:322px !important; _height:400px !important; } .twitter2{ width:450px !important; display:block; height:58px !important; padding-top:10px; margin-top:20px; _margin-top:-20px; margin-left:118px; _margin-left:180px; } .videos{ width:450px !important; display:block; height:auto !important; padding-top:0px; margin-top:0px; margin-left:118px; _margin-left:180px; _Margin-top:-115px; } .videos2{ width:430px !important; display:block; height:auto !important; padding-top:0px; margin-top:35px; margin-left:-100px; _margin-left:-50px; _margin-top:80px; } .promote{ width:450px !important; display:block; height:auto !important; padding-top:0px; margin-top:0px; margin-left:115px; _margin-left:147px; } .promote2{ width:400px !important; display:block; height:auto !important; padding-top:0px; margin-top:0px; margin-left:140px; _margin-left:20px; } .leftcontent { width: 325px !important display: block; height: auto; margin-left: 20px; _margin-left: 0px; } object {position:absolute; height:350px; width:450px; left:50%; z-index:9;} object {top:-40px!important; _top:-90px!important; margin-left:-555px!important; _margin-left:-410px!important;} object object, td td td object, embed {position:static; margin:auto!important;} </style> <div class="gap"><div class="topbanner"> <img src="http://connerjones.webs.com/photos/-consensus/layout-header.jpg" /> </div></div> <div class="menu"> <table id="Table_01" width="894" border="0" cellpadding="0" cellspacing="0"> <tr> <td colspan="5" rowspan="2"> <img src="http://connerjones.webs.com/photos/null/layout-menu_01.jpg" width="327" height="59" alt="" /></td> <td> <a href="http://www.msplinks.com/MDFodHRwOi8vcHVyZXZvbHVtZS5jb20vY29uc2Vuc3VzYmFuZA=="> <img src="http://connerjones.webs.com/photos/null/layout_02.jpg" width="149" height="49" border="0" alt="" /></a></td> <td colspan="2"> <a href="http://www.msplinks.com/MDFodHRwOi8vY29uc2Vuc3VzLmJpZ2NhcnRlbC5jb20="> <img src="http://connerjones.webs.com/photos/null/layout_03.jpg" width="101" height="49" border="0" alt="" /></a></td> <td> <a href="http://www.msplinks.com/MDFodHRwOi8vd3d3LmZhY2Vib29rLmNvbS9Db25zZW5zdXNCYW5k"> <img src="http://connerjones.webs.com/photos/null/layout_04.jpg" width="85" height="49" border="0" alt="" /></a></td> <td colspan="2"> <a href="http://www.msplinks.com/MDFodHRwOi8vdHdpdHRlci5jb20vY29uc2Vuc3VzYmFuZA=="> <img src="http://connerjones.webs.com/photos/null/layout_05.jpg" width="103" height="49" border="0" alt="" /></a></td> <td> <a href="http://www.msplinks.com/MDFodHRwOi8vd3d3LnlvdXR1YmUuY29tL2NvbnNlbnN1c2JhbmQ="> <img src="http://connerjones.webs.com/photos/null/layout_06.jpg" width="84" height="49" border="0" alt="" /></a></td> <td rowspan="5"> <img src="http://connerjones.webs.com/photos/null/layout-menu_07.jpg" width="45" height="118" alt="" /></td> </tr> <tr> <td colspan="7"> <img src="http://connerjones.webs.com/photos/null/layout-menu_08.jpg" width="522" height="10" alt="" /></td> </tr> <tr> <td colspan="4"> <img src="http://connerjones.webs.com/photos/null/layout-menu_09.jpg" width="272" height="3" alt="" /></td> <td colspan="3" rowspan="2"> <a href="http://www.msplinks.com/MDFodHRwOi8vY29tbWVudC5teXNwYWNlLmNvbS9pbmRleC5jZm0/ZnVzZWFjdGlvbj11c2VyLnZpZXdQcm9maWxlX2NvbW1lbnRGb3JtJmZyaWVuZElEPTE5Mzg5NTExNg=="> <img src="http://connerjones.webs.com/photos/null/layout_10.jpg" width="211" height="47" border="0" alt="" /></a></td> <td rowspan="2"> <a href="http://www.msplinks.com/MDFodHRwOi8vZnJpZW5kcy5teXNwYWNlLmNvbS9pbmRleC5jZm0/ZnVzZWFjdGlvbj1pbnZpdGUuYWRkZnJpZW5kX3ZlcmlmeSZmcmllbmRJZD0xOTM4OTUxMTY="> <img src="http://connerjones.webs.com/photos/null/layout_11.jpg" width="94" height="47" border="0" alt="" /></a></td> <td colspan="4"> <img src="http://connerjones.webs.com/photos/null/layout-menu_12.jpg" width="272" height="3" alt="" /></td> </tr> <tr> <td rowspan="2"> <img src="http://connerjones.webs.com/photos/null/layout-menu_13.jpg" width="49" height="56" alt="" /></td> <td> <a href="http://www.msplinks.com/MDFodHRwOi8vaG9tZS5teXNwYWNlLmNvbS9pbmRleC5jZm0/ZnVzZWFjdGlvbj11c2Vy"> <img src="http://connerjones.webs.com/photos/null/layout_14.jpg" width="73" height="44" border="0" alt="" /></a></td> <td rowspan="2"> <img src="http://connerjones.webs.com/photos/null/layout-menu_15.jpg" width="1" height="56" alt="" /></td> <td> <a href="http://www.msplinks.com/MDFodHRwOi8vbWVzc2FnaW5nLm15c3BhY2UuY29tL2luZGV4LmNmbT9mdXNlYWN0aW9uPW1haWwubWVz 2FnZSZmcmllbmRJRD0xOTM4OTUxMTY="> <img src="http://connerjones.webs.com/photos/null/layout_16.jpg" width="149" height="44" border="0" alt="" /></a></td> <td colspan="2"> <a href="http://viewmorepics.myspace.com/index.cfm?fuseaction=user.viewAlbums&friendID=193895116"> <img src="http://connerjones.webs.com/photos/null/layout_17.jpg" width="120" height="44" border="0" alt="" /></a></td> <td colspan="2"> <a href="http://vids.myspace.com/index.cfm?fuseaction=vids.showvids&friendID=193895116&n=193895116"> <img src="http://connerjones.webs.com/photos/null/layout_18.jpg" width="152" height="44" border="0" alt="" /></a></td> </tr> <tr> <td> <img src="http://connerjones.webs.com/photos/null/layout-menu_19.jpg" width="73" height="12" alt="" /></td> <td colspan="9"> <img src="http://connerjones.webs.com/photos/null/layout-menu_20.jpg" width="726" height="12" alt="" /></td> </tr> <tr> <td> <img src="http://connerjones.webs.com/photos/null/spacer.gif" width="49" height="1" alt="" /></td> <td> <img src="http://connerjones.webs.com/photos/null/spacer.gif" width="73" height="1" alt="" /></td> <td> <img src="http://connerjones.webs.com/photos/null/spacer.gif" width="1" height="1" alt="" /></td> <td> <img src="http://connerjones.webs.com/photos/null/spacer.gif" width="149" height="1" alt="" /></td> <td> <img src="http://connerjones.webs.com/photos/null/spacer.gif" width="55" height="1" alt="" /></td> <td> <img src="http://connerjones.webs.com/photos/null/spacer.gif" width="149" height="1" alt="" /></td> <td> <img src="http://connerjones.webs.com/photos/null/spacer.gif" width="7" height="1" alt="" /></td> <td> <img src="http://connerjones.webs.com/photos/null/spacer.gif" width="94" height="1" alt="" /></td> <td> <img src="http://connerjones.webs.com/photos/null/spacer.gif" width="85" height="1" alt="" /></td> <td> <img src="http://connerjones.webs.com/photos/null/spacer.gif" width="35" height="1" alt="" /></td> <td> <img src="http://connerjones.webs.com/photos/null/spacer.gif" width="68" height="1" alt="" /></td> <td> <img src="http://connerjones.webs.com/photos/null/spacer.gif" width="84" height="1" alt="" /></td> <td> <img src="http://connerjones.webs.com/photos/null/spacer.gif" width="45" height="1" alt="" /></td> </tr> </table> </div> <div class="player"> <img src="http://connerjones.webs.com/photos/-consensus/picture-player.jpg" /> </div> <div class="shows"> <img src="http://connerjones.webs.com/photos/-consensus/shows.jpg" /> </div> <div class="twitter2"> <img src="http://connerjones.webs.com/photos/-consensus/twitter.jpg" /> </div> <div class="twitter"> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="500" width="422" align="middle"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="movie" value="http://static.twitter.com/flash/widgets/profile/TwitterWidget.swf" /> <param name="wmode" value="transparent" /> <param name="quality" value="high" /> <param name="bgcolor" value="000000" /> <param name="flashvars" value="userID=51382028&styleURL=http://static.twitter.com/flash/widgets/profile/velvetica.xml" /> <embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://static.twitter.com/flash/widgets/profile/TwitterWidget.swf" height="500" width="422" align="middle" wmode="transparent" quality="high" bgcolor="000000" flashvars="userID=51382028&styleURL=http://static.twitter.com/flash/widgets/profile/velvetica.xml" /> </object> </div> <div class="videos"> <img src="http://connerjones.webs.com/photos/-consensus/videos.jpg" /> </div> <div class="videos2"> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="245" width="430"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="movie" value="http://www.youtube.com/v/wExHrh-IW0Q&hl=en&fs=1&" /> <param name="wmode" value="transparent" /> <embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://www.youtube.com/v/wExHrh-IW0Q&hl=en&fs=1&" height="245" width="430" wmode="transparent" /> </object> </div> <div class="promote"><center> <img src="http://connerjones.webs.com/photos/-consensus/promote.jpg" /> </div> <div class="promote2"> <a href="http://myspace.com/theconsensusband" target="_blank"><img src="http://memberfiles.freewebs.com/73/91/46359173/photos/-consensus/promo-fall2009.gif" alt="Consensus Promo Animation" border="0" /></a><br /> Copy the code below and paste it into your profile/website! <textarea style="_margin-left:0px; border: 1px solid gray; overflow: auto; width: 400px; height: 35px; background-color: white;"><a href="http://memberfiles.freewebs.com/73/91/46359173/photos/-consensus/promo-fall2009.gif" border="1"></a></textarea> <br /> <a href="http://myspace.com/theconsensusband" target="_blank"><img src="http://i169.photobucket.com/albums/u239/hiddenflaw/consensuspromo.gif" alt="Consensus Promo Animation" border="0" /></a><br /> Copy the code below and paste it into your profile/website! <br /> <textarea style="_margin-left:0px; border: 1px solid gray; overflow: auto; width: 400px; height: 35px; background-color: white;"><a href="http://i169.photobucket.com/albums/u239/hiddenflaw/consensuspromo.giff" border="1"></a></textarea> <center></div> <div class="mike"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="150" width="150" align="middle"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="movie" value="http://twitter.com/flash/twitter_badge.swf" /> <param name="wmode" value="transparent" /> <param name="flashvars" value="color1=0&type=user&id=75800583" /> <param name="quality" value="high" /> <embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://twitter.com/flash/twitter_badge.swf" height="150" width="150" align="middle" wmode="transparent" flashvars="color1=0&type=user&id=75800583" quality="high" /> </object></div> <div class="conner"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="150" width="150" align="middle"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="movie" value="http://twitter.com/flash/twitter_badge.swf" /> <param name="wmode" value="transparent" /> <param name="flashvars" value="color1=0&type=user&id=23279831" /> <param name="quality" value="high" /> <embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://twitter.com/flash/twitter_badge.swf" height="150" width="150" align="middle" wmode="transparent" flashvars="color1=0&type=user&id=23279831" quality="high" /> </object></div> <div class="keenan"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="150" width="150" align="middle"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="movie" value="http://twitter.com/flash/twitter_badge.swf" /> <param name="wmode" value="transparent" /> <param name="flashvars" value="color1=0&type=user&id=47543497" /> <param name="quality" value="high" /> <embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://twitter.com/flash/twitter_badge.swf" height="150" width="150" align="middle" wmode="transparent" flashvars="color1=0&type=user&id=47543497" quality="high" /> </object> </div> <div class="jj"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="150" width="150" align="middle"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="movie" value="http://twitter.com/flash/twitter_badge.swf" /> <param name="wmode" value="transparent" /> <param name="flashvars" value="color1=0&type=user&id=21549223" /> <param name="quality" value="high" /> <embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://twitter.com/flash/twitter_badge.swf" height="150" width="150" align="middle" wmode="transparent" flashvars="color1=0&type=user&id=21549223" quality="high" /> </object> </div> <div class="ben"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="150" width="150" align="middle"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="movie" value="http://twitter.com/flash/twitter_badge.swf" /> <param name="wmode" value="transparent" /> <param name="flashvars" value="color1=0&type=user&id=74049593" /> <param name="quality" value="high" /> <embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://twitter.com/flash/twitter_badge.swf" height="150" width="150" align="middle" wmode="transparent" flashvars="color1=0&type=user&id=74049593" quality="high" /> </object> </div> <div class="tg_left"> <img src="http://connerjones.webs.com/photos/-consensus/members.jpg" /> <img src="http://connerjones.webs.com/photos/-consensus/members-pics.jpg" /> <img src="http://connerjones.webs.com/photos/-consensus/merch.jpg" /> <a href="http://www.msplinks.com/MDFodHRwOi8vY29uc2Vuc3VzLmJpZ2NhcnRlbC5jb20="><img src="http://connerjones.webs.com/photos/-consensus/shirts.jpg" /></a> <img src="http://connerjones.webs.com/photos/-consensus/thingswelike.jpg" /> <img src="http://connerjones.webs.com/photos/-consensus/stuff.jpg" /> <img src="http://connerjones.webs.com/photos/-consensus/info.jpg" /> <div class="leftcontent" align="justify"> <b style="color:3b3d3d;">URL.</b><br /> <a href="http://www.myspace.com/theconsensusband">www.myspace.com/theconsensusband</a><br /> <br /> <b style="color:3b3d3d;">BOOKING.</b><br /> <a href="mailto:consensusband@gmail.com">consensusband@gmail.com</a><br /> <br /> <b style="color:3b3d3d;">HOMETOWN.</b><br /> Kirklin, IN<br /> <br /> <b style="color:3b3d3d;">MERCH.</b><br /> <a href="http://www.msplinks.com/MDFodHRwOi8vY29uc2Vuc3VzLmJpZ2NhcnRlbC5jb20v">consensus.bigcartel.com</a><br /> <br /> <b style="color:3b3d3d;">LABEL.</b><br /> Unsigned<br /> <br /> </div> <style> html body.bodyContent table tbody tr td table tbody tr td.text table.latestBlogEntry{ background-color: transparent !important; color:000000 !important; width: 450px !important; border-collapse: collapse !important; margin-bottom: 0 !important; margin-left: 118px !important; margin-right: 0 !important; margin-top: 15px !important; padding: 0 !important; table-layout: fixed !important; position: relative !important; background-image: url(http://connerjones.webs.com/photos/-consensus/blog.jpg); background-repeat: no-repeat; background-position: 0px 0px; overflow: hidden; _background-position: 0px 2px; _margin-left: 167px !important; _margin-top: 0px !important; } html body.bodyContent table tbody tr td table tbody tr td.text table.latestBlogEntry tbody tr{ display: inline; margin: 0 !important; padding: 0 !important; } html body.bodyContent table tbody tr td table tbody tr td.text table.latestBlogEntry tbody tr td{ display: block !important; margin: 0 !important; padding: 0 !important; width: 399px !important; font-family: Arial; color: 000000 !important; clear: both !important; font-size: 1px !important; line-height: 0px; vertical-align: middle; _width:380px; } html body.bodyContent table tbody tr td table tbody tr td.text table.latestBlogEntry tbody tr td a{ float: right; line-height: 35px; color: 000000 ; padding: 0px !important; margin: 0px !important; padding-right: 5px !important; position: relative; z-index: 6; font-weight: normal; font-size: 10px !important; display: block; height: 35px; text-transform: Capitalize; _font-size: 10px !important; _width:120px; _text-align:right; _font-weight: normal; _postion: absolute !important; _margin-top: -4px !important; _margin-left:20px; } html body.bodyContent table tbody tr td table tbody tr td.text table.latestBlogEntry tbody tr td span.text{ line-height: 35px; position: absolute; display: block; border-bottom: 1px dotted dimgray; border-color: ; width: 403px; color: 000000; padding: 0px !important; margin: 0px !important; margin-left: 30px !important; padding-left: 5px !important; z-index: 5; font-weight: normal; font-size: 10px !important; height: 35px; _font-size: 10px !important; _margin-top: -3px !important; _font-weight: normal !important; _margin-left: 12px !important; _width:380px; } html body.bodyContent table tbody tr td table tbody tr td.text table.latestBlogEntry tbody tr td span.btext{ display: block; float: left; width: 50px !important; height: 43px; font-size: 1px; overflow: hidden; color: 000000 !important; line-height: 300px; } html body.bodyContent table tbody tr td table tbody tr td.text table.friendSpace tbody tr td.text table tbody tr td span.orangetext15{ display: block !important; height: 58px !important; width: 450px !important; margin: 0 !important; margin-left: 118px !important; padding: 0 !important; font-size: 1px; overflow: hidden; background-image: url(http://connerjones.webs.com/photos/-consensus/friends.jpg); background-repeat: no-repeat; color: transparent !important; line-height: 10px !important; margin-top: -3px !important; background-color: transparent !important; _margin-left: 154px !important; } html body.bodyContent table tbody tr td table.friendsComments { width: 720px !important; margin: 0 !important; padding: 0 !important; margin-top: 20px !important; overflow: hidden !important; background-color: transparent !important; margin-left: -1px !important; _width: 720px !important; _margin-left: 50px !important;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table { width: 100% !important; border-collapse: separate !important; border-spacing: 0px 0px !important; background-color: transparent !important; height: auto !important;} table.friendsComments tbody tr td.text table tbody tr td { background-color: transparent !important; height: auto !important;} table.friendsComments tbody tr td.text table tbody tr td span.orangetext15 { background-image: url(http://connerjones.webs.com/photos/-consensus/comments-1.jpg); background-repeat: no-repeat !important; background-color: transparent; display: block !important; height: 45px !important; color: 000000 !important; width: 800px; position: relative; overflow: hidden; font-size: 1px; text-align: right; margin-top: 5px; line-height: 300px !important; _width: 800px !important; _border-left: 1px 000000 !important; _border-right: 1px 000000 !important; _height: 45px !important; _margin-bottom: -1px !important; _margin-left:50px; } html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td b { display: block; position: absolute; z-index: 9; width: 750px; height: 15px; line-height: 15px; overflow: hidden; margin: -25px 0 0 8px; text-align: right; padding-right: 12px !important; color: 000000; font-weight: normal; font-size: 12px; _margin: 0px 0 0 15px; _font-size: 12px !important; _color: 000000;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td b span.redtext { font-weight: normal; color: 666666; padding: 0px 2px;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td b a { color: 666666 !important; font-size: 12px !important; text-transform: none; margin: 0 -7px 0 -8px !important; padding: 0 9px 0 9px !important; background-color: transparent !important; position: relative !important; display: inline !important; z-index: 9; border: none !important; letter-spacing: 0px !important; _font-size: 11px !important; _margin: 0 !important; _padding: 0 !important;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td table { overflow: hidden !important; border: 1px 000000 !important; border-color: 000000 !important; width: 100% !important;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td table tr td { background-color: transparent !important; text-align: left; vertical-align: top; overflow: hidden !important; font-size: 12px !important; line-height: 12px !important; text-transform: none !important; letter-spacing: 0px; color: 000000 !important; margin: 0 !important; padding: 5px 0px 5px 0px; border-bottom: 0px 000000 !important; border-color: 000000 !important; _line-height: 16px !important;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td table tr td span.blacktext10 { color: 000000 !important; text-transform: None !important; margin: 0px !important; padding: 0px important; display: block !important; font-size: 12px; font-family: arial, sans-serif !important; font-weight: normal; letter-spacing: 1px; text-align: right; margin: 10px 10px -12px 0px !important; width: 650px; border-top: 1px 000000; _margin: 12px 0px -.5em 0px !important; _width: 650px;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td { background-color: transparent !important;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td a { display: block; border: 0px 000000 !important; border-color: 000000 !important; border-top-style: solid !important; border-top-width: 0px !important; text-align: center; text-transform: Uppercase; padding: 8px; font-size: 12px; letter-spacing: 1px; color: transparent !important; position: relative !important; margin-top: -3px !important; background-color: transparent; _margin-top: -6px !important;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td table tr td a { display: block !important; color: 000000 !important; margin: 0px !important; padding: 10px 10px 0px 10px !important; text-transform: none !important; margin-bottom: -15px !important; font-size: 10px !important; line-height: 11px !important; border: none !important; letter-spacing: 0px !important; text-align: center !important; width: 110px !important; overflow: hidden !important; font-weight: normal; _width: 124px !important; _margin-bottom: -15px !important;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td table tr td a img { visibility: visible !important; border: 0px 008080 !important; border-color: 000000 !important; padding: 0px !important; margin: 0px !important; margin-top: -12px !important; width: auto !important; _margin-left: -4px;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td table tr td img.ImgOnlineNow { display: block; position: relative; margin: 15px 0 -20px 26px !important; border: none !important; _margin: 15px 0 -20px 21px !important;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td table tr td img { max-width: 100%; margin: 0px !important; margin: 0px 0px 12px 0px !important;} .orangetext15 {display: none;} .whitetext12 {display: none;} table table div embed, table table div object {position:relative; z-index:9;} table, tr, td{ background-color:transparent; border-style:none; } body { background-color: ffffff; background-image:url(http://fc02.deviantart.com/fs51/f/2009/256/c/c/cc38529b93e12304313046c2a2abdbaa.jpg); background-position: top center; background-repeat: no-repeat; background-attachment: scroll; } table table table table, table table table td{ background-image:none; background-color:transparent; } body, div, p, strong, td, .text, .blacktext10, .blacktext12, a.searchlinkSmall, a.searchlinkSmall:link, a.searchlinkSmall:visited{ color:000000; font-size:9pt; line-height: 10pt; font-weight:normal; font-style:normal; text-decoration:none; text-transform:none; font-family:Helvetica Narrow, sans-serif; } strong, .lightbluetext8, .btext, .redtext, .redbtext{ color:666666; font-size:9pt; font-weight:normal; font-style:normal; text-decoration:none; text-transform:none; font-family:Helvetica Narrow, sans-serif; } a font, a:link, a:visited, a.navbar, a.navbar:link, a.navbar:visited, a.man, a.man:link, a.man:visited, a.man font, a.redlink, a.redlink:visited{ color:666666; font-size:9pt; font-weight:normal; font-style:normal; text-decoration:none ; text-transform:none; font-family:Helvetica Narrow, sans-serif; } a { color: 444444 !important; font-family: Arial !important; } a:hover { color: 000000 !important; font-family: Arial !important; } a:hover, a:hover font, a:active, a.navbar:hover, a.navbar:active, a.man:hover, a.man:active, a.man:hover font, a.searchlinkSmall:hover, a.searchlinkSmall:active, a.redlink:hover, a.redlink:hover{ color:666666; font-size:9pt; font-weight:normal; font-style:normal; text-decoration:normal ; text-transform:none; font-family:Helvetica Narrow, sans-serif; } table table table table, div table table table{ border-style:none; } </style> |
|
|
![]()
Post
#77
|
|
Newbie ![]() Group: Member Posts: 1 Joined: Oct 2009 Member No: 748,008 ![]() |
Hi, i'm just trying to put a simple background on the page using following code:
CODE body { margin-top:510px; background-color: ffffff; background-image:url(http://forevervendetta.webs.com/stripes.jpg); background-position: top center; background-repeat: repeat-y; background-attachment: scroll; } It works fine in firefox, but in IE, when there's a flash ad at the top of the page, it offsets the background to the right and a scroll bar appears. any ideas? thanks |
|
|
![]()
Post
#78
|
|
Newbie ![]() Group: Member Posts: 1 Joined: Feb 2008 Member No: 623,207 ![]() |
Wow this is wonderful.
|
|
|
![]()
Post
#79
|
|
Newbie ![]() Group: Member Posts: 5 Joined: Oct 2009 Member No: 748,899 ![]() |
Does any of this code disable the calender from showing up or not functioning? So far, I have followed the tutorial without and trouble except I can not get my calender to show up on my page =( Any help would be greatly appreciated. Thanks!
|
|
|
![]()
Post
#80
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
Are you talking about the Upcoming Shows table?
|
|
|
![]()
Post
#81
|
|
Newbie ![]() Group: Member Posts: 5 Joined: Oct 2009 Member No: 748,899 ![]() |
|
|
|
![]()
Post
#82
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
Have you tried pushing down everything below the navigation?
|
|
|
![]()
Post
#83
|
|
Newbie ![]() Group: Member Posts: 5 Joined: Oct 2009 Member No: 748,899 ![]() |
Have you tried pushing down everything below the navigation? I'm sorry, but I'm not quite sure I understand. Are you talking about the myspace navigation if so, yes everything is below that. Here is a link. The blue squares are just placemarkers for graphics. I was using them for alignment =). |
|
|
![]()
Post
#84
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
Have you even posted any shows yet?
|
|
|
![]()
Post
#85
|
|
Newbie ![]() Group: Member Posts: 5 Joined: Oct 2009 Member No: 748,899 ![]() |
|
|
|
![]()
Post
#86
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
Well those dates aren't showing up for some reason. I should be able to find them in your page source if they're there but I can't find any.
|
|
|
![]()
Post
#87
|
|
Newbie ![]() Group: Member Posts: 5 Joined: Oct 2009 Member No: 748,899 ![]() |
Well those dates aren't showing up for some reason. I should be able to find them in your page source if they're there but I can't find any. So I removed ALL the code and it still wasn't working. So to everyone that is having this problem with band profiles, it's NOT the code. I found out what it was. You can not add dates/events using "Manage Calender". You have to add shows using edit profile. I didn't know there was a difference but I guess there is. So it's working now. Thanks for the help Mike!! |
|
|
![]()
Post
#88
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
No problem.
|
|
|
![]()
Post
#89
|
|
Member ![]() ![]() Group: Member Posts: 10 Joined: Sep 2009 Member No: 746,858 ![]() |
Hey guys, in IE my code apparently makes the little twitter badges HUGE. Any clue as to why?
CODE .conner {
position:absolute; top:1685px; left:50%; margin-left:-295px; _margin-left:-696px; _width:150px !important;text-align:center; _height:150px !important; z-index:2; } .keenan { position:absolute; top:1925px; left:50%; margin-left:-295px; _margin-left:-696px; _width:150px !important;text-align:center; _height:150px !important; z-index:2; } .jj { position:absolute; top:2165px; left:50%; margin-left:-295px; _margin-left:-696px; _width:150px !important;text-align:center; _height:150px !important; z-index:2; } .ben { position:absolute; top:2405px; left:50%; margin-left:-295px; _margin-left:-696px; _width:150px !important;text-align:center; _height:150px !important; z-index:2; } ... <div class="conner"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="150" width="150" align="middle"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="movie" value="http://twitter.com/flash/twitter_badge.swf" /> <param name="wmode" value="transparent" /> <param name="flashvars" value="color1=0&type=user&id=23279831" /> <param name="quality" value="high" /> <embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://twitter.com/flash/twitter_badge.swf" height="150" width="150" align="middle" wmode="transparent" flashvars="color1=0&type=user&id=23279831" quality="high" /> </object></div> <div class="keenan"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="150" width="150" align="middle"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="movie" value="http://twitter.com/flash/twitter_badge.swf" /> <param name="wmode" value="transparent" /> <param name="flashvars" value="color1=0&type=user&id=47543497" /> <param name="quality" value="high" /> <embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://twitter.com/flash/twitter_badge.swf" height="150" width="150" align="middle" wmode="transparent" flashvars="color1=0&type=user&id=47543497" quality="high" /> </object> </div> <div class="jj"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="150" width="150" align="middle"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="movie" value="http://twitter.com/flash/twitter_badge.swf" /> <param name="wmode" value="transparent" /> <param name="flashvars" value="color1=0&type=user&id=21549223" /> <param name="quality" value="high" /> <embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://twitter.com/flash/twitter_badge.swf" height="150" width="150" align="middle" wmode="transparent" flashvars="color1=0&type=user&id=21549223" quality="high" /> </object> </div> <div class="ben"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="150" width="150" align="middle"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="movie" value="http://twitter.com/flash/twitter_badge.swf" /> <param name="wmode" value="transparent" /> <param name="flashvars" value="color1=0&type=user&id=74049593" /> <param name="quality" value="high" /> <embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://twitter.com/flash/twitter_badge.swf" height="150" width="150" align="middle" wmode="transparent" flashvars="color1=0&type=user&id=74049593" quality="high" /> </object> </div>
Reason for edit: Please use [codebox] tags instead of [code] tags when posting longer codes. - Mike
|
|
|
![]()
Post
#90
|
|
Newbie ![]() Group: Member Posts: 2 Joined: Oct 2009 Member No: 749,012 ![]() |
Hey everyone :)
Just wanna say, excellent tutorial. I was just after a little bit of help. I don't know whether this comes under 'hiding things' or not. Basically on my bands profile: http://www.myspace.com/forgottenrootsuk I've managed to put in some nice headers down the left hand side. The only one I can't seem to work out is the one for the Myspace Url section. I don't want the address itself covered over but I do want the white text that says Myspace Url covered over with one of my Photoshop made images. Any help would be much appreciated :) Thanks |
|
|
![]()
Post
#91
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
Hey guys, in IE my code apparently makes the little twitter badges HUGE. Any clue as to why? CODE .conner { position:absolute; top:1685px; left:50%; margin-left:-295px; _margin-left:-696px; _width:150px !important;text-align:center; _height:150px !important; z-index:2; } .keenan { position:absolute; top:1925px; left:50%; margin-left:-295px; _margin-left:-696px; _width:150px !important;text-align:center; _height:150px !important; z-index:2; } .jj { position:absolute; top:2165px; left:50%; margin-left:-295px; _margin-left:-696px; _width:150px !important;text-align:center; _height:150px !important; z-index:2; } .ben { position:absolute; top:2405px; left:50%; margin-left:-295px; _margin-left:-696px; _width:150px !important;text-align:center; _height:150px !important; z-index:2; } ... <div class="conner"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="150" width="150" align="middle"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="movie" value="http://twitter.com/flash/twitter_badge.swf" /> <param name="wmode" value="transparent" /> <param name="flashvars" value="color1=0&type=user&id=23279831" /> <param name="quality" value="high" /> <embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://twitter.com/flash/twitter_badge.swf" height="150" width="150" align="middle" wmode="transparent" flashvars="color1=0&type=user&id=23279831" quality="high" /> </object></div> <div class="keenan"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="150" width="150" align="middle"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="movie" value="http://twitter.com/flash/twitter_badge.swf" /> <param name="wmode" value="transparent" /> <param name="flashvars" value="color1=0&type=user&id=47543497" /> <param name="quality" value="high" /> <embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://twitter.com/flash/twitter_badge.swf" height="150" width="150" align="middle" wmode="transparent" flashvars="color1=0&type=user&id=47543497" quality="high" /> </object> </div> <div class="jj"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="150" width="150" align="middle"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="movie" value="http://twitter.com/flash/twitter_badge.swf" /> <param name="wmode" value="transparent" /> <param name="flashvars" value="color1=0&type=user&id=21549223" /> <param name="quality" value="high" /> <embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://twitter.com/flash/twitter_badge.swf" height="150" width="150" align="middle" wmode="transparent" flashvars="color1=0&type=user&id=21549223" quality="high" /> </object> </div> <div class="ben"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="150" width="150" align="middle"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="movie" value="http://twitter.com/flash/twitter_badge.swf" /> <param name="wmode" value="transparent" /> <param name="flashvars" value="color1=0&type=user&id=74049593" /> <param name="quality" value="high" /> <embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://twitter.com/flash/twitter_badge.swf" height="150" width="150" align="middle" wmode="transparent" flashvars="color1=0&type=user&id=74049593" quality="high" /> </object> </div> Can you post all of your codes? Hey everyone :) Just wanna say, excellent tutorial. I was just after a little bit of help. I don't know whether this comes under 'hiding things' or not. Basically on my bands profile: http://www.myspace.com/forgottenrootsuk I've managed to put in some nice headers down the left hand side. The only one I can't seem to work out is the one for the Myspace Url section. I don't want the address itself covered over but I do want the white text that says Myspace Url covered over with one of my Photoshop made images. Any help would be much appreciated :) Thanks If you've made your image, place it inside a DIV and position it around. The code should look like this: CODE <div style="position:absolute; top:#px; left:50%; margin-left:#px; z-index:9;"> <img src="URL" alt="" /> </div> Replace the pound symbols with appropriate values to move the DIV and URL with your image's URL. |
|
|
![]()
Post
#92
|
|
Newbie ![]() Group: Member Posts: 2 Joined: Oct 2009 Member No: 749,012 ![]() |
thanks a lot :)
its hard work working out all the measurements and that like, submitting, previewing etc. is there a way to calculate these easier? and, can you do the same method with a DIV for covering over Upcoming Shows and Blogs? |
|
|
![]()
Post
#93
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
|
|
|
![]()
Post
#94
|
|
Member ![]() ![]() Group: Member Posts: 10 Joined: Sep 2009 Member No: 746,858 ![]() |
Hey Mike, here's the rest of my code.
CODE <style> .profileWidth table { margin-bottom:844px; width:800px; } .rail { display:none; } .gap { background: top left no-repeat; width:894px; height:844px; position:absolute; top:0; left:50%; margin:0px 0 -400px -496px; } .topbanner {position:absolute; left:50%; top:0px; margin-left:-400px; _margin-left:-401px; width:894; height:844px; z-index:1;} .menu { background: top left no-repeat; width:894px; height:844px; position:absolute; top:0; left:50%; margin:844px 0 -400px -449px; _margin:844px 0 -400px -450px; } .player { background: top left no-repeat; width:894px; height:844px; position:absolute; top:0; left:50%; margin:962px 0 -400px -449px; _margin:962px 0 -400px -450px; } .tg_left { position:absolute; top:1344px ; left:50%; margin-left:-449px; _margin-left:-450px; width:325px; height:800px; z-index:1; } .mike { position:absolute; top:1445px; left:50%; margin-left:-295px; _margin-left:-696px; _width:150px !important;text-align:center; _height:150px !important; z-index:2; } .conner { position:absolute; top:1685px; left:50%; margin-left:-295px; _margin-left:-696px; _width:150px !important;text-align:center; _height:150px !important; z-index:2; } .keenan { position:absolute; top:1925px; left:50%; margin-left:-295px; _margin-left:-696px; _width:150px !important;text-align:center; _height:150px !important; z-index:2; } .jj { position:absolute; top:2165px; left:50%; margin-left:-295px; _margin-left:-696px; _width:150px !important;text-align:center; _height:150px !important; z-index:2; } .ben { position:absolute; top:2405px; left:50%; margin-left:-295px; _margin-left:-696px; _width:150px !important;text-align:center; _height:150px !important; z-index:2; } .shows {position:absolute; top:1348px; left:50%; margin-left:1px; _margin-left:0px; width:325px; height:58px; z-index:1;} table table table table td.text span.whitetext12 { position: relative; top: 0px; display: block; left: 450px; visibility: visible; width: 1px; height: 0px; text-indent: -999999px; background: transparent bottom left no-repeat; } .twitter{ width:422px display:block; height:500px padding-top:20px; _padding-top:20px; margin-top:42px; margin-left:-318px; _margin-top:65px; _margin-left:-50px; _width:322px !important; _height:400px !important; } .twitter2{ width:450px !important; display:block; height:58px !important; padding-top:10px; margin-top:20px; _margin-top:-20px; margin-left:118px; _margin-left:180px; } .videos{ width:450px !important; display:block; height:auto !important; padding-top:0px; margin-top:0px; margin-left:118px; _margin-left:180px; _Margin-top:-115px; } .videos2{ width:430px !important; display:block; height:auto !important; padding-top:0px; margin-top:35px; margin-left:-100px; _margin-left:-50px; _margin-top:80px; } .promote{ width:450px !important; display:block; height:auto !important; padding-top:0px; margin-top:0px; margin-left:115px; _margin-left:147px; } .promote2{ width:400px !important; display:block; height:auto !important; padding-top:0px; margin-top:0px; margin-left:140px; _margin-left:160px; } .leftcontent { width: 325px !important display: block; height: auto; margin-left: 20px; _margin-left: 0px; } object {position:absolute; height:350px; width:450px; left:50%; z-index:9;} object {top:-40px!important; _top:-90px!important; margin-left:-555px!important; _margin-left:-410px!important;} object object, td td td object, embed {position:static; margin:auto!important;} </style> <div class="gap"><div class="topbanner"> <img src="http://connerjones.webs.com/photos/-consensus/layout-header.jpg" /> </div></div> <div class="menu"> <table id="Table_01" width="894" border="0" cellpadding="0" cellspacing="0"> <tr> <td colspan="5" rowspan="2"> <img src="http://connerjones.webs.com/photos/null/layout-menu_01.jpg" width="327" height="59" alt="" /></td> <td> <a href="http://www.msplinks.com/MDFodHRwOi8vcHVyZXZvbHVtZS5jb20vY29uc2Vuc3VzYmFuZA=="> <img src="http://connerjones.webs.com/photos/null/layout_02.jpg" width="149" height="49" border="0" alt="" /></a></td> <td colspan="2"> <a href="http://www.msplinks.com/MDFodHRwOi8vY29uc2Vuc3VzLmJpZ2NhcnRlbC5jb20="> <img src="http://connerjones.webs.com/photos/null/layout_03.jpg" width="101" height="49" border="0" alt="" /></a></td> <td> <a href="http://www.msplinks.com/MDFodHRwOi8vd3d3LmZhY2Vib29rLmNvbS9Db25zZW5zdXNCYW5k"> <img src="http://connerjones.webs.com/photos/null/layout_04.jpg" width="85" height="49" border="0" alt="" /></a></td> <td colspan="2"> <a href="http://www.msplinks.com/MDFodHRwOi8vdHdpdHRlci5jb20vY29uc2Vuc3VzYmFuZA=="> <img src="http://connerjones.webs.com/photos/null/layout_05.jpg" width="103" height="49" border="0" alt="" /></a></td> <td> <a href="http://www.msplinks.com/MDFodHRwOi8vd3d3LnlvdXR1YmUuY29tL2NvbnNlbnN1c2JhbmQ="> <img src="http://connerjones.webs.com/photos/null/layout_06.jpg" width="84" height="49" border="0" alt="" /></a></td> <td rowspan="5"> <img src="http://connerjones.webs.com/photos/null/layout-menu_07.jpg" width="45" height="118" alt="" /></td> </tr> <tr> <td colspan="7"> <img src="http://connerjones.webs.com/photos/null/layout-menu_08.jpg" width="522" height="10" alt="" /></td> </tr> <tr> <td colspan="4"> <img src="http://connerjones.webs.com/photos/null/layout-menu_09.jpg" width="272" height="3" alt="" /></td> <td colspan="3" rowspan="2"> <a href="http://www.msplinks.com/MDFodHRwOi8vY29tbWVudC5teXNwYWNlLmNvbS9pbmRleC5jZm0/ZnVzZWFjdGlvbj11c2VyLnZpZXdQcm9maWxlX2NvbW1lbnRGb3JtJmZyaWVuZElEPTE5Mzg5NTExNg=="> <img src="http://connerjones.webs.com/photos/null/layout_10.jpg" width="211" height="47" border="0" alt="" /></a></td> <td rowspan="2"> <a href="http://www.msplinks.com/MDFodHRwOi8vZnJpZW5kcy5teXNwYWNlLmNvbS9pbmRleC5jZm0/ZnVzZWFjdGlvbj1pbnZpdGUuYWRkZnJpZW5kX3ZlcmlmeSZmcmllbmRJZD0xOTM4OTUxMTY="> <img src="http://connerjones.webs.com/photos/null/layout_11.jpg" width="94" height="47" border="0" alt="" /></a></td> <td colspan="4"> <img src="http://connerjones.webs.com/photos/null/layout-menu_12.jpg" width="272" height="3" alt="" /></td> </tr> <tr> <td rowspan="2"> <img src="http://connerjones.webs.com/photos/null/layout-menu_13.jpg" width="49" height="56" alt="" /></td> <td> <a href="http://www.msplinks.com/MDFodHRwOi8vaG9tZS5teXNwYWNlLmNvbS9pbmRleC5jZm0/ZnVzZWFjdGlvbj11c2Vy"> <img src="http://connerjones.webs.com/photos/null/layout_14.jpg" width="73" height="44" border="0" alt="" /></a></td> <td rowspan="2"> <img src="http://connerjones.webs.com/photos/null/layout-menu_15.jpg" width="1" height="56" alt="" /></td> <td> <a href="http://www.msplinks.com/MDFodHRwOi8vbWVzc2FnaW5nLm15c3BhY2UuY29tL2luZGV4LmNmbT9mdXNlYWN0aW9uPW1haWwubWVz 2FnZSZmcmllbmRJRD0xOTM4OTUxMTY="> <img src="http://connerjones.webs.com/photos/null/layout_16.jpg" width="149" height="44" border="0" alt="" /></a></td> <td colspan="2"> <a href="http://viewmorepics.myspace.com/index.cfm?fuseaction=user.viewAlbums&friendID=193895116"> <img src="http://connerjones.webs.com/photos/null/layout_17.jpg" width="120" height="44" border="0" alt="" /></a></td> <td colspan="2"> <a href="http://vids.myspace.com/index.cfm?fuseaction=vids.showvids&friendID=193895116&n=193895116"> <img src="http://connerjones.webs.com/photos/null/layout_18.jpg" width="152" height="44" border="0" alt="" /></a></td> </tr> <tr> <td> <img src="http://connerjones.webs.com/photos/null/layout-menu_19.jpg" width="73" height="12" alt="" /></td> <td colspan="9"> <img src="http://connerjones.webs.com/photos/null/layout-menu_20.jpg" width="726" height="12" alt="" /></td> </tr> <tr> <td> <img src="http://connerjones.webs.com/photos/null/spacer.gif" width="49" height="1" alt="" /></td> <td> <img src="http://connerjones.webs.com/photos/null/spacer.gif" width="73" height="1" alt="" /></td> <td> <img src="http://connerjones.webs.com/photos/null/spacer.gif" width="1" height="1" alt="" /></td> <td> <img src="http://connerjones.webs.com/photos/null/spacer.gif" width="149" height="1" alt="" /></td> <td> <img src="http://connerjones.webs.com/photos/null/spacer.gif" width="55" height="1" alt="" /></td> <td> <img src="http://connerjones.webs.com/photos/null/spacer.gif" width="149" height="1" alt="" /></td> <td> <img src="http://connerjones.webs.com/photos/null/spacer.gif" width="7" height="1" alt="" /></td> <td> <img src="http://connerjones.webs.com/photos/null/spacer.gif" width="94" height="1" alt="" /></td> <td> <img src="http://connerjones.webs.com/photos/null/spacer.gif" width="85" height="1" alt="" /></td> <td> <img src="http://connerjones.webs.com/photos/null/spacer.gif" width="35" height="1" alt="" /></td> <td> <img src="http://connerjones.webs.com/photos/null/spacer.gif" width="68" height="1" alt="" /></td> <td> <img src="http://connerjones.webs.com/photos/null/spacer.gif" width="84" height="1" alt="" /></td> <td> <img src="http://connerjones.webs.com/photos/null/spacer.gif" width="45" height="1" alt="" /></td> </tr> </table> </div> <div class="player"> <img src="http://connerjones.webs.com/photos/-consensus/picture-player.jpg" /> </div> <div class="shows"> <img src="http://connerjones.webs.com/photos/-consensus/shows.jpg" /> </div> <div class="twitter2"> <img src="http://connerjones.webs.com/photos/-consensus/twitter.jpg" /> </div> <div class="twitter"> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="500" width="422" align="middle"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="movie" value="http://static.twitter.com/flash/widgets/profile/TwitterWidget.swf" /> <param name="wmode" value="transparent" /> <param name="quality" value="high" /> <param name="bgcolor" value="000000" /> <param name="flashvars" value="userID=51382028&styleURL=http://static.twitter.com/flash/widgets/profile/velvetica.xml" /> <embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://static.twitter.com/flash/widgets/profile/TwitterWidget.swf" height="500" width="422" align="middle" wmode="transparent" quality="high" bgcolor="000000" flashvars="userID=51382028&styleURL=http://static.twitter.com/flash/widgets/profile/velvetica.xml" /> </object> </div> <div class="videos"> <img src="http://connerjones.webs.com/photos/-consensus/videos.jpg" /> </div> <div class="videos2"> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="245" width="430"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="movie" value="http://www.youtube.com/v/wExHrh-IW0Q&hl=en&fs=1&" /> <param name="wmode" value="transparent" /> <embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://www.youtube.com/v/wExHrh-IW0Q&hl=en&fs=1&" height="245" width="430" wmode="transparent" /> </object> </div> <div class="promote"><center> <img src="http://connerjones.webs.com/photos/-consensus/promote.jpg" /> </div> <div class="promote2"> <a href="http://myspace.com/theconsensusband" target="_blank"><img src="http://memberfiles.freewebs.com/73/91/46359173/photos/-consensus/promo-fall2009.gif" alt="Consensus Promo Animation" border="0" /></a><br /> Copy the code below and paste it into your profile/website! <textarea style="_margin-left:-160px; border: 1px solid gray; overflow: auto; width: 400px; height: 35px; background-color: white;"><a href="http://memberfiles.freewebs.com/73/91/46359173/photos/-consensus/promo-fall2009.gif" border="1"></a></textarea> <br /> <a href="http://myspace.com/theconsensusband" target="_blank"><img src="http://i169.photobucket.com/albums/u239/hiddenflaw/consensuspromo.gif" alt="Consensus Promo Animation" border="0" /></a><br /> Copy the code below and paste it into your profile/website! <br /> <textarea style="_margin-left:-160px; border: 1px solid gray; overflow: auto; width: 400px; height: 35px; background-color: white;"><a href="http://i169.photobucket.com/albums/u239/hiddenflaw/consensuspromo.giff" border="1"></a></textarea> <center></div> <div class="mike"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="150" width="150" align="middle"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="movie" value="http://twitter.com/flash/twitter_badge.swf" /> <param name="wmode" value="transparent" /> <param name="flashvars" value="color1=0&type=user&id=75800583" /> <param name="quality" value="high" /> <embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://twitter.com/flash/twitter_badge.swf" height="150" width="150" align="middle" wmode="transparent" flashvars="color1=0&type=user&id=75800583" quality="high" /> </object></div> <div class="conner"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="150" width="150" align="middle"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="movie" value="http://twitter.com/flash/twitter_badge.swf" /> <param name="wmode" value="transparent" /> <param name="flashvars" value="color1=0&type=user&id=23279831" /> <param name="quality" value="high" /> <embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://twitter.com/flash/twitter_badge.swf" height="150" width="150" align="middle" wmode="transparent" flashvars="color1=0&type=user&id=23279831" quality="high" /> </object></div> <div class="keenan"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="150" width="150" align="middle"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="movie" value="http://twitter.com/flash/twitter_badge.swf" /> <param name="wmode" value="transparent" /> <param name="flashvars" value="color1=0&type=user&id=47543497" /> <param name="quality" value="high" /> <embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://twitter.com/flash/twitter_badge.swf" height="150" width="150" align="middle" wmode="transparent" flashvars="color1=0&type=user&id=47543497" quality="high" /> </object> </div> <div class="jj"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="150" width="150" align="middle"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="movie" value="http://twitter.com/flash/twitter_badge.swf" /> <param name="wmode" value="transparent" /> <param name="flashvars" value="color1=0&type=user&id=21549223" /> <param name="quality" value="high" /> <embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://twitter.com/flash/twitter_badge.swf" height="150" width="150" align="middle" wmode="transparent" flashvars="color1=0&type=user&id=21549223" quality="high" /> </object> </div> <div class="ben"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="150" width="150" align="middle"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="movie" value="http://twitter.com/flash/twitter_badge.swf" /> <param name="wmode" value="transparent" /> <param name="flashvars" value="color1=0&type=user&id=74049593" /> <param name="quality" value="high" /> <embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://twitter.com/flash/twitter_badge.swf" height="150" width="150" align="middle" wmode="transparent" flashvars="color1=0&type=user&id=74049593" quality="high" /> </object> </div> <div class="tg_left"> <img src="http://connerjones.webs.com/photos/-consensus/members.jpg" /> <img src="http://connerjones.webs.com/photos/-consensus/members-pics.jpg" /> <img src="http://connerjones.webs.com/photos/-consensus/merch.jpg" /> <a href="http://www.msplinks.com/MDFodHRwOi8vY29uc2Vuc3VzLmJpZ2NhcnRlbC5jb20="><img src="http://connerjones.webs.com/photos/-consensus/shirts.jpg" /></a> <img src="http://connerjones.webs.com/photos/-consensus/thingswelike.jpg" /> <img src="http://connerjones.webs.com/photos/-consensus/stuff.jpg" /> <img src="http://connerjones.webs.com/photos/-consensus/info.jpg" /> <div class="leftcontent" align="justify"> <b style="color:3b3d3d;">URL.</b><br /> <a href="http://www.myspace.com/theconsensusband">www.myspace.com/theconsensusband</a><br /> <br /> <b style="color:3b3d3d;">BOOKING.</b><br /> <a href="mailto:consensusband@gmail.com">consensusband@gmail.com</a><br /> <br /> <b style="color:3b3d3d;">HOMETOWN.</b><br /> Kirklin, IN<br /> <br /> <b style="color:3b3d3d;">MERCH.</b><br /> <a href="http://www.msplinks.com/MDFodHRwOi8vY29uc2Vuc3VzLmJpZ2NhcnRlbC5jb20v">consensus.bigcartel.com</a><br /> <br /> <b style="color:3b3d3d;">LABEL.</b><br /> Unsigned<br /> <br /> </div> <style> html body.bodyContent table tbody tr td table tbody tr td.text table.latestBlogEntry{ background-color: transparent !important; color:000000 !important; width: 450px !important; border-collapse: collapse !important; margin-bottom: 0 !important; margin-left: 118px !important; margin-right: 0 !important; margin-top: 15px !important; padding: 0 !important; table-layout: fixed !important; position: relative !important; background-image: url(http://connerjones.webs.com/photos/-consensus/blog.jpg); background-repeat: no-repeat; background-position: 0px 0px; overflow: hidden; _background-position: 0px 2px; _margin-left: 167px !important; _margin-top: 0px !important; } html body.bodyContent table tbody tr td table tbody tr td.text table.latestBlogEntry tbody tr{ display: inline; margin: 0 !important; padding: 0 !important; } html body.bodyContent table tbody tr td table tbody tr td.text table.latestBlogEntry tbody tr td{ display: block !important; margin: 0 !important; padding: 0 !important; width: 399px !important; font-family: Arial; color: 000000 !important; clear: both !important; font-size: 1px !important; line-height: 0px; vertical-align: middle; _width:380px; _margin-left:40px; } html body.bodyContent table tbody tr td table tbody tr td.text table.latestBlogEntry tbody tr td a{ float: right; line-height: 35px; color: 000000 ; padding: 0px !important; margin: 0px !important; padding-right: 5px !important; position: relative; z-index: 6; font-weight: normal; font-size: 10px !important; display: block; height: 35px; text-transform: Capitalize; _font-size: 10px !important; _width:120px; _text-align:right; _font-weight: normal; _postion: absolute !important; _margin-top: -4px !important; _margin-left:22px; } html body.bodyContent table tbody tr td table tbody tr td.text table.latestBlogEntry tbody tr td span.text{ line-height: 35px; position: absolute; display: block; border-bottom: 1px dotted dimgray; border-color: ; width: 403px; color: 000000; padding: 0px !important; margin: 0px !important; margin-left: 30px !important; padding-left: 5px !important; z-index: 5; font-weight: normal; font-size: 10px !important; height: 35px; _font-size: 10px !important; _margin-top: -3px !important; _font-weight: normal !important; _margin-left: 62px !important; _width:380px; } html body.bodyContent table tbody tr td table tbody tr td.text table.latestBlogEntry tbody tr td span.btext{ display: block; float: left; width: 50px !important; height: 43px; font-size: 1px; overflow: hidden; color: 000000 !important; line-height: 300px; } html body.bodyContent table tbody tr td table tbody tr td.text table.friendSpace tbody tr td.text table tbody tr td span.orangetext15{ display: block !important; height: 58px !important; width: 450px !important; margin: 0 !important; margin-left: 118px !important; padding: 0 !important; font-size: 1px; overflow: hidden; background-image: url(http://connerjones.webs.com/photos/-consensus/friends.jpg); background-repeat: no-repeat; color: transparent !important; line-height: 10px !important; margin-top: -3px !important; background-color: transparent !important; _margin-left: 184px !important; } html body.bodyContent table tbody tr td table.friendsComments { width: 720px !important; margin: 0 !important; padding: 0 !important; margin-top: 20px !important; overflow: hidden !important; background-color: transparent !important; margin-left: -1px !important; _width: 720px !important; _margin-left: 50px !important;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table { width: 100% !important; border-collapse: separate !important; border-spacing: 0px 0px !important; background-color: transparent !important; height: auto !important; _margin-left:20px;} table.friendsComments tbody tr td.text table tbody tr td { background-color: transparent !important; height: auto !important;} table.friendsComments tbody tr td.text table tbody tr td span.orangetext15 { background-image: url(http://connerjones.webs.com/photos/-consensus/comments-1.jpg); background-repeat: no-repeat !important; background-color: transparent; display: block !important; height: 45px !important; color: 000000 !important; width: 800px; position: relative; overflow: hidden; font-size: 1px; text-align: right; margin-top: 5px; line-height: 300px !important; _width: 800px !important; _border-left: 1px 000000 !important; _border-right: 1px 000000 !important; _height: 45px !important; _margin-bottom: -1px !important; _margin-left:50px; } html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td b { display: block; position: absolute; z-index: 9; width: 750px; height: 15px; line-height: 15px; overflow: hidden; margin: -25px 0 0 8px; text-align: right; padding-right: 12px !important; color: 000000; font-weight: normal; font-size: 12px; _margin: 0px 0 0 15px; _font-size: 12px !important; _color: 000000; _margin-left:12px;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td b span.redtext { font-weight: normal; color: 666666; padding: 0px 2px; _margin-left:0px;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td b a { color: 666666 !important; font-size: 12px !important; text-transform: none; margin: 0 -7px 0 -8px !important; padding: 0 9px 0 9px !important; background-color: transparent !important; position: relative !important; display: inline !important; z-index: 9; border: none !important; letter-spacing: 0px !important; _font-size: 11px !important; _margin: 0 !important; _padding: 0 !important; _margin-left:0px} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td table { overflow: hidden !important; border: 1px 000000 !important; border-color: 000000 !important; width: 100% !important;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td table tr td { background-color: transparent !important; text-align: left; vertical-align: top; overflow: hidden !important; font-size: 12px !important; line-height: 12px !important; text-transform: none !important; letter-spacing: 0px; color: 000000 !important; margin: 0 !important; padding: 5px 0px 5px 0px; border-bottom: 0px 000000 !important; border-color: 000000 !important; _line-height: 16px !important;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td table tr td span.blacktext10 { color: 000000 !important; text-transform: None !important; margin: 0px !important; padding: 0px important; display: block !important; font-size: 12px; font-family: arial, sans-serif !important; font-weight: normal; letter-spacing: 1px; text-align: right; margin: 10px 10px -12px 0px !important; width: 650px; border-top: 1px 000000; _margin: 12px 0px -.5em 0px !important; _width: 650px;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td { background-color: transparent !important;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td a { display: block; border: 0px 000000 !important; border-color: 000000 !important; border-top-style: solid !important; border-top-width: 0px !important; text-align: center; text-transform: Uppercase; padding: 8px; font-size: 12px; letter-spacing: 1px; color: transparent !important; position: relative !important; margin-top: -3px !important; background-color: transparent; _margin-top: -6px !important;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td table tr td a { display: block !important; color: 000000 !important; margin: 0px !important; padding: 10px 10px 0px 10px !important; text-transform: none !important; margin-bottom: -15px !important; font-size: 10px !important; line-height: 11px !important; border: none !important; letter-spacing: 0px !important; text-align: center !important; width: 110px !important; overflow: hidden !important; font-weight: normal; _width: 124px !important; _margin-bottom: -15px !important;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td table tr td a img { visibility: visible !important; border: 0px 008080 !important; border-color: 000000 !important; padding: 0px !important; margin: 0px !important; margin-top: -12px !important; width: auto !important; _margin-left: -4px;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td table tr td img.ImgOnlineNow { display: block; position: relative; margin: 15px 0 -20px 26px !important; border: none !important; _margin: 15px 0 -20px 21px !important;} html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td table tr td img { max-width: 100%; margin: 0px !important; margin: 0px 0px 12px 0px !important;} .orangetext15 {display: none;} .whitetext12 {display: none;} table table div embed, table table div object {position:relative; z-index:9;} table, tr, td{ background-color:transparent; border-style:none; } body { background-color: ffffff; background-image:url(http://fc02.deviantart.com/fs51/f/2009/256/c/c/cc38529b93e12304313046c2a2abdbaa.jpg); background-position: top center; background-repeat: no-repeat; background-attachment: scroll; } table table table table, table table table td{ background-image:none; background-color:transparent; } body, div, p, strong, td, .text, .blacktext10, .blacktext12, a.searchlinkSmall, a.searchlinkSmall:link, a.searchlinkSmall:visited{ color:000000; font-size:9pt; line-height: 10pt; font-weight:normal; font-style:normal; text-decoration:none; text-transform:none; font-family:Helvetica Narrow, sans-serif; } strong, .lightbluetext8, .btext, .redtext, .redbtext{ color:666666; font-size:9pt; font-weight:normal; font-style:normal; text-decoration:none; text-transform:none; font-family:Helvetica Narrow, sans-serif; } a font, a:link, a:visited, a.navbar, a.navbar:link, a.navbar:visited, a.man, a.man:link, a.man:visited, a.man font, a.redlink, a.redlink:visited{ color:666666; font-size:9pt; font-weight:normal; font-style:normal; text-decoration:none ; text-transform:none; font-family:Helvetica Narrow, sans-serif; } a { color: 444444 !important; font-family: Arial !important; } a:hover { color: 000000 !important; font-family: Arial !important; } a:hover, a:hover font, a:active, a.navbar:hover, a.navbar:active, a.man:hover, a.man:active, a.man:hover font, a.searchlinkSmall:hover, a.searchlinkSmall:active, a.redlink:hover, a.redlink:hover{ color:666666; font-size:9pt; font-weight:normal; font-style:normal; text-decoration:normal ; text-transform:none; font-family:Helvetica Narrow, sans-serif; } table table table table, div table table table{ border-style:none; } </style> I'm also having some trouble with alignment in IE, but right now my biggest concern is the oversized twitter badges. Oh, and the layout can be seen here on my testing site: myspace.com/ineedtotestthis Thanks again! |
|
|
![]()
Post
#95
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
Find this line in your codes:
CODE object {position:absolute; height:350px; width:450px; left:50%; z-index:9;} Remove the size attributes and see if that fixes it. |
|
|
![]()
Post
#96
|
|
Member ![]() ![]() Group: Member Posts: 10 Joined: Sep 2009 Member No: 746,858 ![]() |
Thanks Mike, it totally did.
I am having a little problem with the shows section being a little too far to the left, and I can't figure out which attribute to change to move it. |
|
|
![]()
Post
#97
|
|
Newbie ![]() Group: Member Posts: 2 Joined: Oct 2009 Member No: 749,118 ![]() |
Mike,
I've noticed you've been able to solve some problems with weird IE formating. I have one of my own and I'd really appreciate your help. The code I've been working with looks great in Safari, but in Internet Explorer the left column is too far right. It actually overlaps the right column completely. How can I change my code so it'll work properly in both IE and safari? Thanks so much, Travis Here is the link to the myspace I'm working on: http://www.myspace.com/213123434341412321321434 And here is my code: CODE <i class="i">!!! Start Code To Apply Top Banner !!!!</i> <a class="i" href="http://www.msplinks.com/MDFodHRwOi8veGlpaS51cy9tcy90b3AtYmFubmVy" title="myspace top banner"> Custom top banner code by Eileen</a> <style> {!- make room at bottom of div.profileWidth -!} div.profileWidth table {margin-bottom:480px !important;} {! apply banner as bkgd image !} div.profileWidth{background-image:url(http://i269.photobucket.com/albums/jj66/norm311/Banner08.jpg)!important; background-position:center bottom !important; background-repeat:no-repeat !important;} {!- reverse -!} table.rail, .i, .i i.x {display:none;} </style> <i class="i">!!! End Code To Apply Top Banner !!!</i> <style> html body.bodyContent table tbody tr td table tbody tr td.text table.latestBlogEntry{ background-color: transparent !important; color: ###### !important; width: 417px !important; border-collapse: collapse !important; margin-bottom: 0 !important; margin-left: 0 !important; margin-right: 0 !important; margin-top: 15px !important; padding: 0 !important; table-layout: fixed !important; position: relative !important; background-image: url(http://i269.photobucket.com/albums/jj66/norm311/News02.jpg); background-repeat: no-repeat; background-position: 0px 0px; overflow: hidden; _background-position: 0px 2px; _margin-left: -4px !important; _margin-top: 0px !important; } html body.bodyContent table tbody tr td table tbody tr td.text table.latestBlogEntry tbody tr{ display: inline; margin: 0 !important; padding: 0 !important; } html body.bodyContent table tbody tr td table tbody tr td.text table.latestBlogEntry tbody tr td{ display: block !important; margin: 0 !important; padding: 0 !important; width: 449px !important; font-family: Arial; color: ###### !important; clear: both !important; font-size: 1px !important; line-height: 0px; vertical-align: middle; } html body.bodyContent table tbody tr td table tbody tr td.text table.latestBlogEntry tbody tr td a{ float: right; line-height: 35px; color: ######; padding: 0px !important; margin: 0px !important; padding-right: 5px !important; position: relative; z-index: 6; font-weight: normal; font-size: 10px !important; display: block; height: 80px; text-transform: Capitalize; _font-size: 10px !important; _width:120px; _text-align:right; _font-weight: normal; _postion: absolute !important; _margin-top: -4px !important; } html body.bodyContent table tbody tr td table tbody tr td.text table.latestBlogEntry tbody tr td span.text{ line-height: 1px; position: absolute; display: block; border-bottom: 1px dotted dimgray; border-color: ######; width: 443px; color: ######; padding: 0px !important; margin: 0px !important; padding-left: 5px !important; z-index: 5; font-weight: normal; font-size: 10px !important; height: 35px; _font-size: 10px !important; _margin-top: -3px !important; _font-weight: normal !important; _margin-left: -3px !important; _width:449px; } html body.bodyContent table tbody tr td table tbody tr td.text table.latestBlogEntry tbody tr td span.btext{ display: block; float: left; width: 50px !important; height: 43px; font-size: 1px; overflow: hidden; color: ###### !important; line-height: 300px; } html body.bodyContent table tbody tr td table tbody tr td.text table.friendSpace tbody tr td.text table tbody tr td span.orangetext15{ display: block !important; height: 52px !important; width: 399px !important; margin: 0 !important; padding: 0 !important; font-size: 1px; overflow: hidden; background-image: url(http://i269.photobucket.com/albums/jj66/norm311/Friends00.jpg); background-repeat: no-repeat; color: 000000 !important; line-height: 10px !important; margin-top: -3px !important; } .shows {position:absolute; top:1075px; left:50%; margin-left:-42px; _margin-left:###px; width:325px; height:52px; z-index:1;} table table table table td.text span.whitetext12 { position: relative; top: 0px; display: block; left: 0px; visibility: visible; width: 1px; height: 52px; text-indent: -999999px; background: transparent url() bottom left no-repeat; } .tg_left {position:absolute; top:1192px; left:50%; margin-left:-403px; _margin-left:000px; width:325px; height:900px; z-index:1;} .nametext{background-color:transparent;font-style:normal; text-transform:none;border:0; font-weight:normal;color:white;font-family:helvetica narrow;} .orangetext15 {display: none;} .whitetext12 {display: none;} table table div embed, table table div object {position:relative; z-index:9;} table, tr, td{ background-color:transparent; border-style:none; } body { background-color: 000000; background-image:url(http://i269.photobucket.com/albums/jj66/norm311/Picture3-1.jpg); background-position: top center; background-repeat: repeat; background-attachment: scroll; } table table table table, table table table td{ background-image:yes; background-color:transparent; } body, div, p, strong, td, .text, .blacktext10, .blacktext12, a.searchlinkSmall, a.searchlinkSmall:link, a.searchlinkSmall:visited{ color:FFFFFF; font-size:9pt; line-height: 10pt; font-weight:normal; font-style:normal; text-decoration:none; text-transform:none; font-family:Helvetica Narrow, sans-serif; } strong, .lightbluetext8, .btext, .redtext, .redbtext{ color:666666; font-size:9pt; font-weight:normal; font-style:normal; text-decoration:none; text-transform:none; font-family:Helvetica Narrow, sans-serif; } a font, a:link, a:visited, a.navbar, a.navbar:link, a.navbar:visited, a.man, a.man:link, a.man:visited, a.man font, a.redlink, a.redlink:visited{ color:FFFFFF; font-size:9pt; font-weight:normal; font-style:normal; text-decoration:none ; text-transform:none; font-family:Helvetica Narrow, sans-serif; } a { color: FFFFFF !important; font-family: Arial !important; } a:hover { color: 666666 !important; font-family: Arial !important; } a:hover, a:hover font, a:active, a.navbar:hover, a.navbar:active, a.man:hover, a.man:active, a.man:hover font, a.searchlinkSmall:hover, a.searchlinkSmall:active, a.redlink:hover, a.redlink:hover{ color:666666; font-size:9pt; font-weight:normal; font-style:normal; text-decoration:normal ; text-transform:none; font-family:Helvetica Narrow, sans-serif; } table table table table, div table table table{ border-style:none; } </style> <div class="shows"> <img src="http://i269.photobucket.com/albums/jj66/norm311/Shows01.jpg" /> </div> <div class="tg_left"> <img src="http://i269.photobucket.com/albums/jj66/norm311/Members00.jpg" /> <img src="http://i269.photobucket.com/albums/jj66/norm311/FullBand.jpg" /> <br></br> <img src="http://i269.photobucket.com/albums/jj66/norm311/OrlandoWeekly.jpg" /> <br></br> <img src="http://i269.photobucket.com/albums/jj66/norm311/BelieverApparelAd01.jpg" /> <br></br> <img src="http://i269.photobucket.com/albums/jj66/norm311/SupportFrom00.jpg" /> <img src="http://i269.photobucket.com/albums/jj66/norm311/Gibson.jpg" /> </div> <img src="http://i269.photobucket.com/albums/jj66/norm311/Videos02.jpg" /> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="225" width="400"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=3373218&server=vimeo.com&show_title=1&show_byline=1&show_portrait=0&color=&fullscreen=1" /> <param name="wmode" value="transparent" /> <embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://vimeo.com/moogaloop.swf?clip_id=3373218&server=vimeo.com&show_title=1&show_byline=1&show_portrait=0&color=&fullscreen=1" height="225" width="400" wmode="transparent" /> </object><p> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="225" width="400"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=3373412&server=vimeo.com&show_title=1&show_byline=1&show_portrait=0&color=&fullscreen=1" /> <param name="wmode" value="transparent" /> <embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://vimeo.com/moogaloop.swf?clip_id=3373412&server=vimeo.com&show_title=1&show_byline=1&show_portrait=0&color=&fullscreen=1" height="225" width="400" wmode="transparent" /> </object><p> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="225" width="400"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=3169743&server=vimeo.com&show_title=1&show_byline=1&show_portrait=0&color=&fullscreen=1" /> <param name="wmode" value="transparent" /> <embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://vimeo.com/moogaloop.swf?clip_id=3169743&server=vimeo.com&show_title=1&show_byline=1&show_portrait=0&color=&fullscreen=1" height="225" width="400" wmode="transparent" /> </object><p> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="225" width="400"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=2322302&server=vimeo.com&show_title=1&show_byline=1&show_portrait=0&color=&fullscreen=1" /> <param name="wmode" value="transparent" /> <embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://vimeo.com/moogaloop.swf?clip_id=2322302&server=vimeo.com&show_title=1&show_byline=1&show_portrait=0&color=&fullscreen=1" height="225" width="400" wmode="transparent" /> </object><p> <img src="http://i269.photobucket.com/albums/jj66/norm311/ShowOct22.jpg"/> |
|
|
![]()
Post
#98
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
Look for this line:
CODE .tg_left {position:absolute; top:1192px; left:50%; margin-left:-403px; _margin-left:000px; width:325px; height:900px; z-index:1;} Remove the margin-left attribute with an underscore before it. |
|
|
![]()
Post
#99
|
|
Newbie ![]() Group: Member Posts: 2 Joined: Oct 2009 Member No: 749,118 ![]() |
Works perfectly. Thanks so much, really appreciate it.
|
|
|
![]()
Post
#100
|
|
Newbie ![]() Group: Member Posts: 1 Joined: Oct 2009 Member No: 750,006 ![]() |
Could anyone help me with this? I'd greatly appreciate it.
http://www.myspace.com/teamteamspirit why is there a large black space at the top? I can't figure it out. CODE <style>
.profileWidth table { margin-bottom:800px; width:-509px; } .rail { display:none; } .gap { background: top center no-repeat; width:800px; height:-6400px; position:absolute; top:0; left:50%; margin:497px 0 -400px -400px; } .topbanner {position:absolute; left:50%; top:0px; margin-left:-400px; _margin-left:-401px; width:0px; height:0px; z-index:1;} </style> <div class="gap"><div class="topbanner"> <img src="http://img25.imageshack.us/img25/3676/46001086.jpg" /> </div></div> <style> .orangetext15 {display: none;} .whitetext12 {display: none;} table table div embed, table table div object {position:relative; z-index:9;} table, tr, td{ background-color:transparent; border-style:none; } body { margin-top:0px; background-color: ffffff; background-image:url(http://www.deviantart.com/download/141126973/gbxbcz_by_gro0ve.jpg); background-position: top center; background-repeat: no-repeat; background-attachment: fixed; } table table table table, table table table td{ background-image:none; background-color:transparent; } body, div, p, strong, td, .whitetext, .whitetext10, .whitetext12, a.searchlinkSmall, a.searchlinkSmall:link, a.searchlinkSmall:visited{ color:ffffff; font-size:9pt; line-height: 10pt; font-weight:normal; font-style:normal; text-decoration:none; text-transform:none; font-family:Helvetica Narrow, sans-serif; } strong, .lightbluetext8, .btext, .redtext, .redbtext{ color:666666; font-size:9pt; font-weight:normal; font-style:normal; text-decoration:none; text-transform:none; font-family:Helvetica Narrow, sans-serif; } a font, a:link, a:visited, a.navbar, a.navbar:link, a.navbar:visited, a.man, a.man:link, a.man:visited, a.man font, a.redlink, a.redlink:visited{ color:C0C0C0; font-size:9pt; font-weight:normal; font-style:normal; text-decoration:none; text-transform:none; font-family:Helvetica Narrow, sans-serif; } a { color: C0C0C0 !important; font-family: Arial !important; } a:hover { color: 666666 !important; font-family: Arial !important; } a:hover, a:hover font, a:active, a.navbar:hover, a.navbar:active, a.man:hover, a.man:active, a.man:hover font, a.searchlinkSmall:hover, a.searchlinkSmall:active, a.redlink:hover, a.redlink:hover{ color:666666; font-size:9pt; font-weight:normal; font-style:normal; text-decoration:normal; text-transform:none; font-family:Helvetica Narrow, sans-serif; } table table table table, div table table table{ border-style:none; } </style>
Reason for edit: Use codeboxes, please -Nat
|
|
|
![]() ![]() |