I do hope this thread will be benificial. Hopefully it will leave the quick technical question, the official firefox, and official programming thread open more for their own respective topics. I know for one, I never know where to post a web coding question.
I want to get rid of tables on my pages, what can I use as an alternative?
There isn't a good reason to completely get rid of tables. You just need to use tables for tabular data. For layout purposes, you should use divs and CSS positioning.
I've actually done that on some of my sites just to see. Most of those browsers are getting updated as well because WAP never really caught on. They usually just shrink everything, but you can also specify a media type when you include a style sheet for 'handheld'
If you correctly label your style sheets for their respective media types (screen for computers, print for paper, handheld, etc) then they those devices should only use the styles relevant to them. If no style sheets are available for a particular device, the page isn't styled, which can be a very good way to display it on handheld devices due to the small amount of screen real estate.
Um. I have a problem with my FTP program and the sites I made on Dreamweaver.
I made the site exactly as I wanted it but when I put it on the FTP program and upload it to comicgenesis, the site looks like it was made by a two-year-old without any of the things from my original files. Is there a way I can avoid using FTP programs or do I have to get my own domain? ><;;;
Is there a way I can avoid using FTP programs or do I have to get my own domain?
If you get your own domain, you'll still be using "FTP programs". If comicgenesis uses their own FTP system, then they're possibly altering your code, and you're screwed so long as you stick with them. But, there is the possibility that it is your error... Internet addresses are case sensitive, while local files are not. I find that to be a comon error I make.
Actually, they are only case sensitive if the server they are on is configured that way. You can make them so they aren't, but generally, it's good to follow the case sensitive rule.
Yes, a good practice is to lowercase everything, at least link/file-wise. If you make a point to never name a file using any capital letters, then there's no doubt in always typing links the same way, and less of a chance for links to be broken.
But what if my pictures in, let's say, a rollover navigation bar are linked to the pics on my comp? Do I have to alter EVERY source to the file I put it in in the FTP program? Cause my site does not show when I upload it, at least not the way I want it.
>< Ugh. Then I have to remake everything. Alright, so if I upload this images of the navigation bar to photobucket, then set the source to that, the bar will work when I upload to comicgenesis?
Yes. A local link (/images/navi1.jpg) would work wherever you move the file. My advice, however, is to use absolute links for your online files. The way a local link works is that it is added to where the file that asks for it... for example, if http://www.mysite.com/index.html requests an /images/navi1.jpg file, it will actually look for http://www.mysite.com/images/navi1.jpg So that you can know where it's getting the file from at all times, I use the longer version in my personal websites. Just remember you need an http:// at the front.
Hard to say, but I would say that if you found one, it probably wouldn't be worth using. Every host I've seen only offers PHP and MySQL for paid accounts.
i am trying to get the get functio in php to work. my page is here it should have the flash object on the top and bottom of the line. i am just using it as a test. there are two rows in my table. id and text. i need it to use the row's id number ad the get variable and it should post the text.
Hello, I'm trying to make a page fit the screen resolution, but I would like to have everything resize for all of the different resolutions. I enjoy the larger resolutions, but I also want it to be accessible for smaller resolutions. I am stuck here. My question is this, should I use Javascript to find the resolution, and then redirect the to the appropriate sized page, or is there a way to use css to resize everything to fit on different resolutions depending on the resolution? Any help would be greatly appreciated. Thanks, -Fankle
If you are using tables then... well you shouldn't be.
If you're using css, change the sizes in the css to %s not the images. You can't change image sizes like that unless you use SVG which isn't supported by anything below Firefox 1.5 and Camino 1.0.
Actually, about that... I've been wanting to do the same thing for my site, mostly after reading a rant by someone about sites using pixel-font sizes (Which I do). I want my websites to be veiwable on anything from 800x600 and above, but I'd also like it to be readable on some person's 50" 1366x768 plasma if they want, or just as readable on some 14" 2400x1800. My problem is with the design. I like to have the content centered, like here on RT (My site, for referance). It works perfectly on 800x600, since the middle bar is slightly more than 700 pixels wide. My problem? I'm afraid making my page use percents to appear similar on 1024x768 (My screen... ) and 1280x960 would make it totally unreadable on 800x600. Should I forget about 800x600 support, or would making the page use percents not be as painful to read on 800x600 as I'm thinking it will be?