Topic: frames (Page 1 of 1) |
|
---|---|
Bipolar (III) Inmate From: New York City |
posted 03-17-2003 22:27
I have not done too much with frames so bare with me. |
Bipolar (III) Inmate From: New York City |
posted 03-18-2003 04:08
got it to work but still need to cut up the image so it is a smooth transition from frame to frame. . . |
Maniac (V) Mad Scientist with Finglongers From: Cell 53, East Wing |
posted 03-18-2003 14:27
As I said here: |
Bipolar (III) Inmate From: New York City |
posted 03-18-2003 15:18
Thanks Emps. I want my image to span the entire width of the page- without any space on the left and right sides (Reference pdf). Since browsers put a small px space surrounding tables, I thought maybe frames would aid me in accomplishing my goal, then simply set marginheight and width = 0, but still when res setting changes, it alters up the entire page . . . but is there a way I could use one page and still have an image spanning the entire width? |
Maniac (V) Inmate From: there...no..there..... |
posted 03-18-2003 15:35
CRO8, I think you can fix this without having to use frames. The image itself looks like a "seemless texture" right? OK, this is what I would do. code: LEFTMARGIN="0" RIGHTMARGIN="0" TOPMARGIN="0" BOTTOMMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0"
code: <table width="100%" border="0" cellspacing="0" cellpadding="0"
|
Bipolar (III) Inmate From: New York City |
posted 03-18-2003 16:05
Perfect. |
Maniac (V) Inmate From: under the bed |
posted 03-18-2003 18:12
quote:
|
Maniac (V) Mad Scientist with Finglongers From: Cell 53, East Wing |
posted 03-18-2003 21:06
As DL says that seems like an awful lot of uneccesary effort to get that effect - have a look at the CSS background styles: code: BODY {
|
Bipolar (III) Inmate From: New York City |
posted 03-18-2003 22:33
DL- yeah well - this is stupid basic html! . . . this is what I was trying to communicate http://www.hotfrogdesign.com/frameset.htm |
Bipolar (III) Inmate From: New York City |
posted 03-19-2003 01:22
damn! Just realized on the train ride home. I want my bg to be rgb #cccccc with 30% opacity. I had planned on making that my one and only bg- but if I use CSS with the screen-length image, I cannot use both! Correct? I will try CPrompt's table suggestion and report back! |
Maniac (V) Inmate From: under the bed |
posted 03-19-2003 01:55
1) CSS should *always* be your first thought. Regardless of what mark-up technique you use (ie frames, tables, divs, whatever..), CSS to style it should not even be a question. |
Bipolar (III) Inmate From: New York City |
posted 03-19-2003 03:15
30% Opacity means I created a bg image in photoshop using #cccccc and then decreasing the opacity of the layer from 100% to 30%, so its a mild gray. I cannot simply put #cccccc as my html bg color because I do not want it that dark- I want to lighten it up- hence using a 1px x 1px image of #cccccc, with decreased opacity- if I do this- then I cannot use CSS for the screen length image. Correct me if I am wrong but you cannot have 2 bg images? Ideally I want the #cccccc (30%) as my main bg color, but then use CSS to position the desired image so it runs across the screen. |
Maniac (V) Inmate From: under the bed |
posted 03-19-2003 03:54 |
Bipolar (III) Inmate From: New York City |
posted 03-19-2003 04:09
Thank DL. I thought there are only 256 web safe colors, and using anything else would not guarantee the same color being viewed by all users. |
Maniac (V) Mad Scientist with Finglongers From: Cell 53, East Wing |
posted 03-19-2003 04:40
CRO8: I'm not sure what the current consesnus is about the 216/212 web safe colours - its a good idea in theory but I've not worried about it for a few years as things have progressed and, although I don't have any stats (I suppos I could make some up) I would have thought that the need for web safe colours has slipped down our list of priorities (and anyway design for your audience so if the audience are likely to have older setups then it might be relevant). |
Bipolar (III) Inmate From: New York City |
posted 03-19-2003 04:43
OK- yeah- my potential clients are small mom and pop shops. Older browsers are pretty common. I will go with using the exact color- and see how it works out. Thanks all for help |
Maniac (V) Inmate From: under the bed |
posted 03-19-2003 05:29 |
Paranoid (IV) Inmate From: Milwaukee |
posted 03-19-2003 09:29
The word on web-safe color -- skipping the "why" part -- is that a) you might as well use the "web-safe pallette." And b) you shouldn't have a web-safe color in a GIF or something butting up directly against a web-safe color defined in a CSS background-color or something -- because they might not actually be the same color. Life is hard. |
Bipolar (III) Inmate From: New York City |
posted 03-19-2003 13:28
I will try both the 1. CSS bg image and 2. table 100% bg image and see which what happens. |