j1nma
j1nma

Reputation: 467

everything is zoomed

I am building the following site:

http://www.verbum.xtrweb.com/soon.php

But as you can see, everything is zoomed. Not if you adjust it, but I dont want users to have to adjust their view for my site. I want my site to always appear with the same zoom, as in the picture I uploaded here:

enter image description here

ctrl + 0 is not a solution I am looking for. If not something in the code, probably a style property or something of the kind. See code in your browser to check. Thanks!!

Upvotes: 1

Views: 103

Answers (3)

Ya Zhuang
Ya Zhuang

Reputation: 4660

Here, the file did not exist:

<script src="js/jquery-1.4.4.min.js" type="text/javascript"></script>

Maybe you should fix this first.

Also, I don't think it's a good idea to include multiple versions of jQuery on the same page.


Update:

<div id="facebook" style="display: inline; opacity: 1.0999999999999999;"> 
<input style=" " id="fb-button" type="submit" value=" " onclick="window.location.href='http://www.facebook.com/sharer.php?u=&lt;http://verbum.xtrweb.com/&gt;&amp;t=&lt;Verbum, the new dictionary&gt;'" <="" input="">          
</div>

The HTML above (copied from your page) is wrong; the input tag does not close properly.

Upvotes: 0

jacek_podwysocki
jacek_podwysocki

Reputation: 807

Apart from all the small errors and mistakes found on your page by previous users, I would advise you to wrap your header content into a container with a percantege width. This way it will keep the same width according to the browser window width in all browsers. The font size of your paragraphs should be em also to adjust itself easily. Keeping all this in mind and cleaning up your code, you should be able to deliver the same experience to most of the users

Upvotes: 1

Willem
Willem

Reputation: 61

Looks like you made a typing-error. Change the font-size of your paragraphs into px or em. So font-size: 37px (instead of 37pt).

Upvotes: 0

Related Questions