|
|||||||
| Home | Photo Gallery | Register | All Albums | Blogs | Forum FAQ | FlashChat | Members List | Calendar | Search | Today's Posts | Mark Forums Read | Vendor Directory |
| Notices |
| Welcome to Yotatech! |
|
|
Welcome to Yotatech, You are currently viewing our forum as a guest, which gives you limited access to view most discussions and access our other features. By joining our community, at no cost, you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is free, fast and simple, so please join our community today! |
![]() |
|
|
Thread Tools | Search this Thread |
|
|
#1 (permalink) | |||||
|
Co-Founder/Administrator
Staff
Join Date: May 2002
Location: Auburn, Washington
Posts: 26,071
|
HTML help with background pic
__________________
Corey 2007 FJ Cruiser Built for 4wheelin', expedition, camping, and overlanding use PNW FJ Cruisers ☺ Detailing 101 ☺ Join Topsites ☺ Muffler Comparisons ☺ Maggiolinas In The Wild FJ Cruiser Buildup ☺ New Roof Top Tent ☺ Video Of My Penthouse Part II ☺ Rehinge Your ARB/Engel Fridge Blog About Roof Top Tents ☺ FJC Magazines Online Review Of My Tent ☺ 2009 Specialized Rockhopper Pro |
|||||
|
|
|
|
|
#2 (permalink) |
|
Registered User
|
I think in this line...
body background="ut_background.jpg" bgproperties="fixed" you would need to change "fixed" to some other value. It's been a long time since I've coded manually, so I can't recall all the values off the top of my head. If you used fixed, it's going to tile it like that throughout the whole document. I would think maybe try "centered" (i doubt that's not how you actually type it), or maybe somebody else knows a better code. Just a friendly bit of criticism... you might want to see about making the image a watermark so the text shows up on the page better.
__________________
-Chris If you can't explain it simply, you don't understand it well enough. Click here to search! My Website Last edited by Churnd; 07-15-2005 at 06:16 AM. |
|
|
|
|
|
#3 (permalink) |
|
Contributing Member
|
what i would do is set the page's bgcolor to black (#000000). Then DEFINE A WIDTH on the centered table (esp that td with the text) and set the td with the text's background to that unreal tournament logo (using background="ut_background.jpg")
edit that unreal tournament logo to be the exact width of the table and itll look juuuust fine on any res. if you need help, ill just code it for you... let me know. |
|
|
|
|
|
#4 (permalink) |
|
Contributing Member
|
actually, i checked and that image doesnt have a real black bg (#000000)... its actually #0c0c0c
|
|
|
|
|
|
#5 (permalink) |
|
Contributing Member
|
here man.. i did the coding for ya (view the source):
http://www.kidmoe.com/corey_page.txt use this as ut_background.jpg: http://www.kidmoe.com/ut_background.jpg that will actually make the background repeat if theres too much text (which there is) so i broke it down into another table which has no bg. to make it more readable, id just turn the opacity down on the ut_background image... edit: heres a darkened ut_background image: http://www.kidmoe.com/ut_background_dark.jpg Last edited by lee; 07-15-2005 at 07:22 AM. |
|
|
|
|
|
#6 (permalink) |
|
Co-Founder/Administrator
Staff
Join Date: May 2002
Location: Auburn, Washington
Posts: 26,071
|
Chris, the bgproperties="fixed command is only to keep the picture still so when you scoll to read the text.
If that command was not in there, when you scroll to read, the cool UT logo in the middle of the pic would scoll too. Lee, yes that is not a black background, it was a screen capture when the game fires up, so the black part surrounding the logo is acutaly part of the pic. I know nothing about tables, never tried before. I will try copying and pasting your text into a new FP session and see what happens. I will post back here later when I get a chance. Lee, thanks a lot for coding that and the pic. I like the lighter pic better. PS, here is test one, not complete. http://www.pnw4runners.com/gaming/un...t2004_test.htm The background is no longer fixed, as the logo scrolls with the text now. I will have to look at the source later.
__________________
Corey 2007 FJ Cruiser Built for 4wheelin', expedition, camping, and overlanding use PNW FJ Cruisers ☺ Detailing 101 ☺ Join Topsites ☺ Muffler Comparisons ☺ Maggiolinas In The Wild FJ Cruiser Buildup ☺ New Roof Top Tent ☺ Video Of My Penthouse Part II ☺ Rehinge Your ARB/Engel Fridge Blog About Roof Top Tents ☺ FJC Magazines Online Review Of My Tent ☺ 2009 Specialized Rockhopper Pro |
|
|
|
|
|
#7 (permalink) |
|
Co-Founder/Administrator
Staff
Join Date: May 2002
Location: Auburn, Washington
Posts: 26,071
|
Lee, I looked at the source code again for the page you made, but the graphic is moving along with the text, it is not behaving to the bgpropeties="fixed" command for some reason.
__________________
Corey 2007 FJ Cruiser Built for 4wheelin', expedition, camping, and overlanding use PNW FJ Cruisers ☺ Detailing 101 ☺ Join Topsites ☺ Muffler Comparisons ☺ Maggiolinas In The Wild FJ Cruiser Buildup ☺ New Roof Top Tent ☺ Video Of My Penthouse Part II ☺ Rehinge Your ARB/Engel Fridge Blog About Roof Top Tents ☺ FJC Magazines Online Review Of My Tent ☺ 2009 Specialized Rockhopper Pro |
|
|
|
|
|
#8 (permalink) |
|
Guest
Join Date: Jun 2003
Location: North Pole
Posts: 1,619
|
Fixed background images are a bad idea from a usability standpoint as most browsers seem to have difficulty rendering pages with them resulting in jerky scrolling.
But if you are set on them, how far are you willing to go to get it to look right on all resolutions? You can always get the users’ screen resolution, and depending on that serve up different background images using some SSI code. |
|
|
|
|
|
#9 (permalink) | |
|
Contributing Member
|
Quote:
stick to my code, only because it will give you what youre looking for but make it user friendly. also, tables are quite easy. you open a < table > (no spaces) and define a width (in pixels) within it (lets say 800). then you add a table row < tr >. no need to define anything. then you add a table column < td > and define a width. you should also put in valign="top" so that all the content in the table column will be at the top, rather than centering itself versus any other TD (table columns) you make. you can make as many tds as you want as long as the total width is equal to the table width (of course). then you close it all out... < /td > < /tr > < /table > so in this case the code would be (without spaces!!) < table width=800 > < tr > < td width=400 > Hi, my name is corey! < /td > < td width=400 > this is column #2 < /td > < /tr > < /table > take the spaces out and place that in your editor.... hope that helped ya. thats about it... Last edited by lee; 07-16-2005 at 11:58 PM. |
|
|
|
|
|
|
#10 (permalink) | |
|
Contributing Member
|
Quote:
|
|
|
|
|
|
|
#11 (permalink) |
|
Registered User
|
It appears as though you've fixed your problem. However, I recommend checking out CSS (cascading style sheets). Their purpose is to separate format from content. Using CSS with HTML allows MUCH greater control over display, and I find it easier to control on the fly. A good place to start is to check out http://www.w3schools.com/css/default.asp. They provide a good introduction and lots of examples.
In your page, I'd break it into 3 sections: Header, Content, and Footer. So in your HTML code you'd have 3 ID sections. In the Content DIV, you'd specify a background image with no repeat. I don't want to overload you with information you probably won't use or understand, but I'd be happy to help you out if you want to make the jump to using CSS. Good luck.
__________________
2006 IS350 1996 SC400 2002 4Runner Sport -- SOLD |
|
|
|
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Background Pics! | 95RunnerSR5 | 86-95 Trucks & 4Runners | 104 | 03-31-2007 02:21 PM |
| background check | Toys-R-Us | Off Topic Talk | 3 | 06-20-2006 02:38 PM |
| Suggestions for Background Check | Haston | Off Topic Talk | 2 | 08-18-2005 01:12 PM |
| Check out this new background I just made. | Paul | 95.5-2004 Tacomas & 96-2002 4Runners | 7 | 01-19-2005 09:56 PM |