![]() |
| |||||||
| Digital Community Come here for all things digital and technological! Inside, you'll find things like hardware talk, software help, coding issues, and layout tips, among other things. |
![]() |
| | LinkBack | Thread Tools | Display Modes |
![]() | ![]() |
| | Level: 32 | HP: 93 / 792 |
| EXP: 69% |
| ![]() | #62 (permalink) | ||
| | HEY IS THIS the thread where you post your banner to place it on your sig? this is my first time in posting a banner here so hope you don't mind... it's pretty bad actually... but it's my just my first work... I'll make it better sometme in the future i promise... [Edited By Secret Azn Man: As KOS-MOS said, TFF is not your host. Please find another host. A list of suggestions are locatated at the Your Digital Needs topic by the awesome Arus Kim.]
__________________ <img src=http://www.geocities.com/tffmitsui/newbanner2.jpg> Last edited by Secret Azn Man; 06-11-2003 at 01:29 PM. | ||||||||
| | | ||||||||
![]() | ![]() |
![]() | ![]() |
| | Level: 52 | HP: 514 / 1291 |
| EXP: 67% |
| ![]() | #63 (permalink) | ||
| Join Date: Aug 2001
Posts
5,305 | Actually, no, this isnt the thread to post your banner for your sig. Hell, youre not supposed to even host it on TFF at all, since it sucks up the site's bandwidth. This is actually the Web Community help thread, which is supposed to be for QUESTIONS about Web/Computer things. The thing your probably thinking of Rate the Banner Thread, but you didnt even ask to rate it. | ||||||||
| | | ||||||||
![]() | ![]() |
![]() | ![]() |
| | Level: 32 | HP: 80 / 778 |
| EXP: 14% |
| ![]() | #64 (permalink) | ||
| Absent |
I've got a quick question for all the web-designers out there - Tiff, SAM, whoever. I was in the process of creating my newest site - I'll post the background at the bottom so you can get a better idea of it. What I want to do is create one of those transparent scroll boxes with the customized scrollbars, etc. The perfect example of what I'm trying to do is available at lenne.nu. Of course, I'm trying to apply different colors to it. Unfortunately, I haven't had success looking around on the web, and when I look on sources to see how it was done, I can't seem to decipher it correctly. I'm looking to place it under the "Serenity" label, land over the slightly faded Yuna image on the left. Any help is very much appreciated! | ||||||||
| | | ||||||||
![]() | ![]() |
![]() | ![]() |
| | Level: 52 | HP: 514 / 1291 |
| EXP: 67% |
| ![]() | #66 (permalink) | ||
| Join Date: Aug 2001
Posts
5,305 | Lmao, I just noticed a correlation between SAM, Kaychanne and me ... XD Anyway. The scrollbars is really just CSS. You can easily find a site that will help you with that, so I won't do that with you since it's a pain explaining it. The box, I'm supposing youre going to use Iframes, right? First thing I usually do is draw the box out, even faintly, so I know the restrictions and placement of what I'm going to make. This involved DIV and IFRAME coding, not too hard if you ask me. Apparantly, youre trying to have the layout image in the middle of the page, right? Well, it's not quite good of an idea to have a ton of white around the image like you're doing there. It'd be a better idea to cut just the layout out, and make everything else into frames, so it's centered. There is a way just to have everything in the middle, but I honestly dont ever have the layouts in the middle so I don't use it. Frames are ... annoying to explain. Look that one up too XD Though, here's a tip. Just have every other frame have a source of something like filler.html so you dont have to code too many pages. Besides, its not like youre going to use anything in those places. And make sure that you dont have a frameborder. Frame borders = bad. An example for the frames is at http://yuuna.net . Also, if you have links on your image that will lead to anywhere else, then slice it up in Photoshop with the slice tool, and go to Save for Web.... That'll save it into an HTML file and sliced up images in an /images folder, with the tables and all ready for you. When you want to find the image that you want to link to somewhere, just open up the HTML document, find the image URL for the image you want, and then EDIT the HTML document, with the <a href=> <img src=images/whateverimage.jpg BORDER=0> </a>. MAKE SURE THAT YOU HAVE BORDER=0 OR ELSE EVERYTHING WILL GO AWRY. Anyway, the next stuff about the div positioning and the iframes is based off of my website ( http://leonhart.net ). This is based on the idea that you have the frames all set and ready (three rows, second row with three frames- the layout in the middle frame). <div style="position:absolute;left:370;top:156;"> This code is for the div style. The underlined stuff you can change- this is measured in pixels. What you pretty much do is open up that HTML document, take a screenshot of it, and from the point where the ACTUAL WEBSITE starts (right below the address/whatever bar and on the left); SEE ATTATCHED IMAGE. Highlight the area from THAT POINT to the beginning of your box. Copy it, and go halfway through creating a new document- just so you can see the width and height. In left, plug in the WIDTH pixels and in the top, plug in the HEIGHT pixels. That should do it for that. If you are simply making it a divbox, meaning without iframes like I have ( http://leonhart.net ), then simply add into the code width:x;height:y right after the top:156; in the above code (before the quotations, also). The measurements are selfexplanitory, and also measured in pixels. The following is if you are using IFRAMES. This is also taken from my website source ( http://leonhart.net ). <iframe name="_iframe" width="361"height="211" src="main.html" frameborder="0"></iframe> Iframe name is just the name of the iframe. So that for any links that I wanted to open up in that iframe, I'd just include target=_iframe in the A html. Width and height are selfexplanitory, pretty much the x and y in my explanation of dix boxes. SRC refers to the page that will automatically be opened up in it. In this case, it is main.htm. It could be any other page, but because main.html is the opening page, that's what it is. Frameborder obviously means ... no frame border. :P You dont need to add anything between <iframe> and </iframe> Well, I think that sums it all up. O_o If I was confusing in any part of this, or if you need help in it, just feel free to IM me or post here again, I'd <3 to help out. | ||||||||
| | | ||||||||
![]() | ![]() |
![]() | ![]() |
| | Level: 32 | HP: 80 / 778 |
| EXP: 14% |
| ![]() | #67 (permalink) | ||
| Absent | Ai, Iluvatar, Tiff! You've helped enormously! Hannon le, nin mellon. Update: I have the image itself sliced in all the right places - I tested it. I have the div box/iframe in just the right place, and it works perfectly. I have the frames (I actually already had those in place). Now, there's just a few more pieces to my puzzle. A: How can I make the background of the div box match up to my background? Right now, there's just an unattractive white box there. How can I change that? B: Am I supposed to make my sliced image my background? It's saved as an Html file, but that won't work for a background. So how do I get the sliced portions to work as a background too? Thanks so much for all your help, it's proved to be immensly useful! | ||||||||
| | | ||||||||
![]() | ![]() |
![]() | ![]() |
| | Level: 52 | HP: 514 / 1291 |
| EXP: 67% |
| ![]() | #68 (permalink) | ||
| Join Date: Aug 2001
Posts
5,305 | I lied. Okay. Lets see. Get the URL of the image for the background box, and copy it. You shouldve had it as a single slice. Set it as the background for all the pages that will go in the iframe (static). Uh .. I think that answers your question up there. Anything else, ask me and Ill answer it tomorow. | ||||||||
| | | ||||||||
![]() | ![]() |
![]() | ![]() |
| | Level: 27 | HP: 58 / 674 |
| EXP: 98% |
| ![]() | #69 (permalink) | ||
| | I was so happy when I saw how good some slash pages looked and I looked at a few. I found this effect on Cammy's site. It is on Yuna where it says enter. How do you do that? I have no idea i even looked around for it...
__________________ | ||||||||
| | | ||||||||
![]() | ![]() |
![]() | ![]() |
| | Level: -INF | HP: NAN / -INF |
| EXP: NAN% |
| #70 (permalink) | |||
| Guest
Posts
n/a | Er... it's the Javascript Link effect. I just read through the pages code, and she got it from "http://dynamicdrive.com" in an archive. Here's the page where she (I'm guessing) got it from; http://www.dynamicdrive.com/dynamici...hlightgrad.htm . Enjoy. Oh, and here's a question... If you have a link you don't want in your right click menu on your IE, how do you get rid of it? (By the way, right clicking on it doesn't work!) Last edited by Messy; 06-24-2003 at 05:42 AM. | ||||||||
| |||||||||
![]() | ![]() |
![]() | ![]() |
| | Level: 21 | HP: 27 / 507 |
| EXP: 29% |
| ![]() | #71 (permalink) | ||
| | Ok, every time I log on to the TFF forums, it never automatically logs me in. Like when I try to change my profile or options, it keeps askin me for my user and pass and its really startin to piss me off. Once in a while, it wont do this but I know it has something to do with cookies. I should have everything in order on the "Internet Props." I tried using Netscape but it does the same thing and it really sucks. If you can help me out, I would really appreciate it! EDIT: nevermind, I got it. The problem was that the website was .com and not org. Weird. Oh well...Last edited by streaml1ned; 04-11-2005 at 06:19 PM. | ||||||||
| | | ||||||||
![]() | ![]() |
![]() | ![]() |
| | Level: -INF | HP: NAN / -INF |
| EXP: NAN% |
| #72 (permalink) | |||
| Guest
Posts
n/a | I know this probably isn't that important, but I just wanted to say thanx for posting this. It helped me a lot. I was having trouble with my sig coming up. It works now so thanx a bunch. ![]() Edit: Btw you said something about Adobe, is it adobe photo deluxe you were talking about? I use Paintshop, but I have adobe. Last edited by LadySubaru; 08-04-2003 at 11:11 AM. | ||||||||
| |||||||||
![]() | ![]() |
![]() | ![]() |
| | Level: 52 | HP: 514 / 1291 |
| EXP: 67% |
| ![]() | #73 (permalink) | ||
| Join Date: Aug 2001
Posts
5,305 | Hey, no problem. I'm glad it helped The Adobe I'm talking about is Adobe Photoshop ^_^By the way, to anyone who's viewing this ... I'll be deleting posts from this thread and adding more stuff to the first post- and revamping the layout of it. ^^ | ||||||||
| | | ||||||||
![]() | ![]() |
![]() | ![]() |
| | Level: 39 | HP: 187 / 967 |
| EXP: 71% |
| ![]() | #74 (permalink) | ||
| This is a question about my computer rather than photoshop, please help. I cant click on any links, none work, be it in here or on msn or whatever, they dont work. I cant even watch my movies or eps since my right click options dont work either, it just does nothing. WTF??? Help meeeeeeeeeeeeeeeeeeeeeeeeee. | |||||||||
| | | ||||||||
![]() | ![]() |
| Sponsored Links |