Members Login.
 

Please register HERE to be part of our Community
Contest of the Day.
 
Participate and Earn $$$.
Looking to Hire.
 
Earn By Posting
 
Participate in forum and Earn $$$.
  • Referrer Credit - BRL$ 100
  • Positive Rep Cr. - BRL$ 3
  • New Thread Cr.- BRL$ 3
  • Posting Cr. - BRL$ 3
  • Post size Credit
Full List of BRL$ Earnings
Sponsors.
 


JavaScript JavaScript is widely used to display client side browser actions. You can discuss anything related to Javascript tutorials, tricks and tips here..

Reply
  #1 (permalink)  
Old 3 Weeks Ago
Peon
 
Join Date: Apr 2008
Posts: 13
Rep Power: 0
hockey97 is on a distinguished road
BRL$: 140.43
Default I got a problem can you help???

Hi I am currently working on a website and just yesterday I found out by looking at 3 other computers testing what my website looks like I found out that when other computers have different display settings they get my webpage to look messy.

Like my background image repeats even thought I have css that tells it to not repeat.

I was woundering if there is a way around this???

could I make a javascript to grab the users browser info and also the users display settings and then write a script to change the height and width of my images and texts or positions so It could adjust my pages to the users display settings.

I asked this on other fourms but they told me to use liquid design and use % not px which I did and ya it did adjust to the users browser but stuff gets either overlapped or gives a noticable gap.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 3 Weeks Ago
Link Exchange - Jr. Member
 
Join Date: Apr 2008
Posts: 256
Rep Power: 4
sysax is on a distinguished road
BRL$: 354.50
Default Re: I got a problem can you help???

Mh, I know what you mean. I had the same problem.
But I just reuploaded my files (backup) and it was fixed on all Pc's.
Maybe try that?
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 3 Weeks Ago
Peon
 
Join Date: Apr 2008
Posts: 13
Rep Power: 0
hockey97 is on a distinguished road
BRL$: 140.43
Default Re: I got a problem can you help???

Can you explain to me how you did it?? or did you just backed the files up and restarted??

my problem is that I created my website on one computer which had the display settings on my monitor to my liking but today after creating the most of the website I decided to test it and see so far how it looks on other computers ect.

so I have 3 other computers in my house and gave it a try one computer was ok since it had the same settings as the one computer I used to make the site on.

The other computers had different display settings larger ones one was a laptop the other a desktop. So now since my positions are aboslute in px it would stay at where I position it and the website became wider causing the background image to be repeated. I have seen other websites that at any display settings there website would adjust to the display settings.

I am stumped on how to make my website to adjust to the users monitor/display settings.

I asked this on 3 different fourms and then googled web development and got here so today I registed hopeing to get an answer since the only answer I gotton was remake your website and design it with a liquid design.

I spent so far 1 year into making this and don't feel like starting over from scratch.

If you can explain to me what you done to bypass this please do...

I don't fully understand what you mean by reupload?? I have my own server. and I am using css and html. I am starting on the parts to give the website advance functions in javascript.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 2 Weeks Ago
Peon
 
Join Date: Apr 2008
Posts: 13
Rep Power: 0
hockey97 is on a distinguished road
BRL$: 140.43
Default Re: I got a problem can you help???

ok I need some help with Jquery it's a javascript lib I am trying to make a li to fade in over an picture when the mouse is over the picture and when it moves off the picture then it fades back out.

I know I have to use the hover functions and also the fadeIn(slow) fadeOut(slow) functions.

I already made a script here it is:

$("document").ready(function() {});
var hide=false;
$("#image").hover(
function () {
if (hide) clearTimeout(hide);
$("#ul1").fadeIn("slow");},
function () {
hide=setTimeout(function(){
$("#ul1").fadeOut("slow")},250);});

Is there anything wrong with it??

becuse I dosen't do anything.

I haver tried it and dosen't do anything.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
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 On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem with radio button and checkbox Rss_Feeds PHP 0 09-19-2007 01:25 PM
MySQL General: problem with partial word search using UNION ALL mr_atom mySQL Database 0 07-18-2007 09:56 PM
Website problem (html) with IE7 by vdos Jason Web Design Requests 0 07-18-2007 12:04 PM
Problem With Ajax Rss_Feeds PHP 0 07-16-2007 11:22 PM
Problem with Include...neverending loop Rss_Feeds PHP 0 07-11-2007 05:19 PM


 

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 86 87 88 89 90 91