problem with text resizing in safari

gabi

New Member
Hello!! :)

please help!! :eek:

I am new at web design and I am building a site for my company.
When I try to resize the site in all browser it resizes just fine, but in Safari I have problem with text resizing. It wont resize enough and falls out of the divs.

Here is the address of my site: http://roartrans.freehostia.com/

Here is the code of the content in header, the one in red div at right

#header_login
height: 50px;
width: 980px;


#login
float: right;
width: 200px;
background-color: #FF3366;


.text_login
font-size: 11px;
font-style: normal;
font-weight: normal;
color: #FFFFFF;
text-decoration: none;
font-family: Verdana, Arial, Helvetica, sans-serif;


<div id="header_login">
<div id="login"><a href="#">Ulazak u korisničke stranice</a></div>
</div>

I have tried everything, but is not working, I even set font-size in body from 100% to 70% but still nothing.

Tell me what I am doing wrong :confused:

Thank you all in advance :)
 

gabi

New Member
I am on pc.
And when you resize, how the links in the footer looks?
To me, the first two column of links go under others when I resize

And when I do not put the font-style in the text it works all right, but when I put style Verdana or any other font, it fall out

It seems that I have problem with whole site in safari, not just text, thanks anyway!
 
Last edited:

CaldwellYSR

Member
Well there's the problem right there. font-style and Verdana don't match up. font-style is for things like normal, italic, and oblique. If you want to set different fonts you use font-family.
 

gabi

New Member
Thank you very much for your help.
I made a new site for try to fix this problems, like an example site. I have changed a lot of things especially in css, and it works all fine. I learned so much.
Now I have to build the whole site again yeah!!

Thanks again, grettings from Croatia!!
 
Top