Welcome to Tech Support Forum home to more then 136,000 problems solved. Issues have included: Spyware, Malware, Virus Issues, Windows, Microsoft, Linux, Networking, Security, Hardware, and Gaming Getting your problem solved is as easy as:
1. Registering for a free account
2. Asking your question
3. Receiving an answer

Registered members:
* Get free support
* Communicate privately with other members (PM).
* Removal of this message
* See fewer ads.
* And much more..

 



Want to know how to post a question? click here Having problems with spyware and pop-ups? First Steps
Go Back   Tech Support Forum > Design Forum > Web Design & Programming
User Name
Password
Site Map Register Donate Rules Blogs Mark Forums Read


Web Design & Programming Discussion of web design, and server-side & client-side scripting

Reply
 
LinkBack Thread Tools
Old 08-10-2008, 10:58 AM   #1 (permalink)
Registered User
 
Join Date: Aug 2008
Posts: 1
OS: xp


Question Issues with resolution on Dreamweaver MX-created pages

Heya, my website has some problems with resolutions on different monitors.

www.36-zero.net

I've seen it on different monitors - there are background images that often don't load, one side is often larger than the other, the bottom of the direction buttons are sligthly cropped, as well as a few other things. On my PC, the one I created it on, it all looks its intended way.

Is there any way I can alter the resolution size of my entire site to create a universal proportion that isn't different depending on monitor size? Is there an option in Dreamweaver MX that lets me scale the pages?

Thanks..
36zero is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Important Information
Join the #1 Tech Support Forum Today - It's Totally Free!

TechSupportForum.com is a leading support website for your computer needs. We offer free, friendly and personalized computer support. Why pay to have your computer fixed when you can do it for free.

Join TechSupportforum.com Today - Click Here

Old 08-10-2008, 03:46 PM   #2 (permalink)
Registered User
 
FredT's Avatar
 
Join Date: Nov 2007
Posts: 388
OS: Mac OS X 10.5.7 and XP SP2


Re: Issues with resolution on Dreamweaver MX-created pages

Well... your page isn't an image lol, so you really can't "scale" it. Screen resolution and browser compatibility have always been a problem... it's really a pain.

I tried reducing the width of my browser window to kinda sorta simulate a smaller resolution... I noticed that some of the buttons disappeared. I can't really tell you how to fix some of the other problems, but I can suggest one thing you can do.

Scale all of your images down individually to fit properly in an 800x600 monitor or whatever. Then create a whole second site called like index_small.html contact_small.html and stuff like that.

Then include this script in the head of your document.

<script type="text/javascript">
if(screen.width<1024){
window.location = "otherurl.html";
}
</script>

Then if someone shows up with a low res monitor, they will be redirected to another page that is made for low res screens. Does this make sense?

Obviously this is a pain and there are other ways of doing it, but do you know HTML? I kind of assumed you didn't, but you may. Let me know if you do or not.

Edit - In that script, you have to change where it says "otherurl.html" to whatever page you want it to redirect to... like "index_small.html".

Last edited by FredT; 08-10-2008 at 03:48 PM.
FredT is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 08-10-2008, 05:08 PM   #3 (permalink)
Design Team Member
 
jamiemac2005's Avatar
 
Join Date: Jul 2007
Location: Coventry, UK
Posts: 1,879
OS: Vista, various linux distros


Re: Issues with resolution on Dreamweaver MX-created pages

Hey, you seem to have quite a few frames in your site... You may want to consider a fixed layout rather than a liquid one (which is your problem with the site right now)...

In dreamweaver you need to take that main page and ensure that the frames are scrollable... theres quite a lot i can't think of exactly how to change this site to make it "scale" / better for small browsers... but if you allow scrolling no matter how ugly the scrollbars you will be allowing users to see your content.

I've been suggesting it a lot tonight but the tutorials at this website: www.w3schools.com are amazing and would teach you HTML&CSS, because in my opinion wysiwyg editors are a big letdown (they don't display webpages the same on different browsers/they don't allow for a lot of compatibility(resolution, size, etc.))

Cheers,
Jamey
__________________

Myspace
jamiemac2005 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 08-10-2008, 06:01 PM   #4 (permalink)
Registered User
 
FredT's Avatar
 
Join Date: Nov 2007
Posts: 388
OS: Mac OS X 10.5.7 and XP SP2


Re: Issues with resolution on Dreamweaver MX-created pages

I definitely agree with jamiemac. Learn HTML! It's a tremendous help when creating a website.
FredT is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 08-10-2008, 06:32 PM   #5 (permalink)
Design Team Member
 
jamiemac2005's Avatar
 
Join Date: Jul 2007
Location: Coventry, UK
Posts: 1,879
OS: Vista, various linux distros


Re: Issues with resolution on Dreamweaver MX-created pages

Cheers FredT =], lol i've seen a lot of you tonight on this forum =]

Just want to wish you luck with learning Javascript, and happy coding =].

As i've mentionned a lot on this forum the resource www.w3schools.com is the most useful resource i've come accross for web-building/design/development work.
I suggest you use it 36zero, because a CSS only based layout would be a lot better than a framebased layout in this case (because it seems quite un-needed).

Cheers,
Jamey
__________________

Myspace
jamiemac2005 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 08-10-2008, 07:22 PM   #6 (permalink)
Registered User
 
FredT's Avatar
 
Join Date: Nov 2007
Posts: 388
OS: Mac OS X 10.5.7 and XP SP2


Re: Issues with resolution on Dreamweaver MX-created pages

Indeed, you have seen a lot of me tonight. I participate now and then if I have time or if I come for some specific reason, but I usually hang around in the Mac forum helping out with os x or mac hardware issues.

I like it over here though, it seems like I know a little bit more about web dev stuff than with Mac stuff, even though I do like both.
FredT is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 08-11-2008, 05:15 AM   #7 (permalink)
Design Team Member
 
jamiemac2005's Avatar
 
Join Date: Jul 2007
Location: Coventry, UK
Posts: 1,879
OS: Vista, various linux distros


Re: Issues with resolution on Dreamweaver MX-created pages

haha, good =] I tend to be in windows XP/Vista, this sub-forum, programming and the web-browser forums. Ironically i'm most active here.
__________________

Myspace
jamiemac2005 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Reply


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




All times are GMT -7. The time now is 06:44 AM.



Copyright 2001 - 2009, Tech Support Forum
Home Tips Plus | Outdoor Basecamp | Automotive Support Forum

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85