font size problem IE 6
some pages are ok, rest are not
please look at these two pages
1 http://www.breathefreely.com/index.php
the drop downs have proper font size
now look at this page from the same site, infact a copy and paste
2. http://www.breathefreely.com/faq.php
the font size for the drop downs is messed up
please tell me what i can do to help this
thanks a bunch!
you guys rock!
1 http://www.breathefreely.com/index.php
the drop downs have proper font size
now look at this page from the same site, infact a copy and paste
2. http://www.breathefreely.com/faq.php
the font size for the drop downs is messed up
please tell me what i can do to help this
thanks a bunch!
you guys rock!
I have checked both pages in IE5.5, Netscape7.1, Firefox 1.0.2 and the font size is the same on both pages in all those browsers.
You'll have to post which browser and OS so someone with the same can check it.
If it is those systems that you are testing, then can you post a screenshot using the img tag so we can see what's up?
Ruth
You'll have to post which browser and OS so someone with the same can check it.
If it is those systems that you are testing, then can you post a screenshot using the img tag so we can see what's up?
Ruth
I have split this topic into a new one, it is not the same as the other and should have its own topic.
Since I don't have those browsers, I can't see the problem and test to see what's causing it.
You can try a few things:
1. remove the style section coded in the head of each page and see if it still occurs. If it still happens then you know that's not the problem.
2. remove main.css and see if it still occurs
3. remove three.css and see if it occurs.
4. change your fontsize="67%" to fontsize="11px"; in the menu files and see if that fixes it.
Also, I do not see why you have each submenu in its own file, but if you want to keep that, that's up to you, however I would remove the menu style and put it in a separate file so you don't have to open each one of those and make changes in each file if you make a change in the style.
You can do either of the following. You are creating problems for yourself doing it as you have, if you make a change and forget to do it in a file then that submenu will be different. Also, it's a lot more work doing it with 4 files rather than just one file.
1. put all your submenus into the menu_data.js file, that way you are only calling the program files and one data file. You could put in info to separate each submenu, something like the following, if you are trying to make sure each submenu is easily found.
2. If you want each submenu to have its own file, then take the menuStyle coding from all of them and put it into one file and name it something like menu_styles.js and just call it with the other files. That way if you're editing the style you only have to do it with one file.
Also, I noticed you have
That is the background color of the item when you are on its page. So, let's say you go to the Allergy Management page, if you had that pagebgcolor set that item would have the pagebgcolor as its background and the pagecolor as its font color.
Finally, you do not have the call for the menu files after the body tag which is what the directions say to do when the menu is in a table.
Ruth
Since I don't have those browsers, I can't see the problem and test to see what's causing it.
You can try a few things:
1. remove the style section coded in the head of each page and see if it still occurs. If it still happens then you know that's not the problem.
2. remove main.css and see if it still occurs
3. remove three.css and see if it occurs.
4. change your fontsize="67%" to fontsize="11px"; in the menu files and see if that fixes it.
Also, I do not see why you have each submenu in its own file, but if you want to keep that, that's up to you, however I would remove the menu style and put it in a separate file so you don't have to open each one of those and make changes in each file if you make a change in the style.
You can do either of the following. You are creating problems for yourself doing it as you have, if you make a change and forget to do it in a file then that submenu will be different. Also, it's a lot more work doing it with 4 files rather than just one file.
1. put all your submenus into the menu_data.js file, that way you are only calling the program files and one data file. You could put in info to separate each submenu, something like the following, if you are trying to make sure each submenu is easily found.
Code: Select all
/..............meet Dr Pasha submenu
with(milonic=new menuname("Meet Dr Pasha")){
overflow="scroll";
style=menuStyle;
aI("text= Raza Pasha MD;url=meet.php;")
aI("text= Tour the Center;url=center.php;")
aI("text= Meet the Staff;url=staff.php;")
}
/.............sinus and allergy submenu..................
with(milonic=new menuname("Sinus and Allergy Center")){
overflow="scroll";
style=menuStyle;
aI("text= Allergy Management;url=sac_default.php;")
aI("text= Sinus Management;url=sinus_mgmt-default.php;")
aI("text= Surgical Solutions;url=sinus_sur_sol_default.php;")
}
Code: Select all
<SCRIPT src="menu_styles.js" type=text/javascript></SCRIPT>
<SCRIPT src="menu_data.js" type=text/javascript></SCRIPT>
<SCRIPT src="sinus_menu_data.js" type=text/javascript></SCRIPT>
<SCRIPT src="snor_menu_data.js" type=text/javascript></SCRIPT>
<SCRIPT src="ped_menu_data.js" type=text/javascript></SCRIPT>
Code: Select all
//pagebgcolor="#BCBB72"; //background of unknown
//pagecolor="black";
Finally, you do not have the call for the menu files after the body tag which is what the directions say to do when the menu is in a table.
Ruth
i totally understand what you are saying
but look at these links for just a moment please
http://zoqdesign.com/pasha
http://zoqdesign.com/pasha/faq.php
this is the test site before i moved these same pages to the final site "breathefreely.com"
How come these same settings are working on test site.?
Shahid
but look at these links for just a moment please
http://zoqdesign.com/pasha
http://zoqdesign.com/pasha/faq.php
this is the test site before i moved these same pages to the final site "breathefreely.com"
How come these same settings are working on test site.?
Shahid
I could look at the pages but it won't do any good. As I said, I do not have those browsers and it is not doing that in the ones I have.
There doesn't seem to be anyone available who has those browsers which is why I made the suggestions so that you could test things.
I can't see anything different anywhere so I can't say where to check. If you have a professional or up license you could log in on the main site and send a support request. Someplace in the info you got when you purchased a license there are directions for how to do that.
Ruth
There doesn't seem to be anyone available who has those browsers which is why I made the suggestions so that you could test things.
I can't see anything different anywhere so I can't say where to check. If you have a professional or up license you could log in on the main site and send a support request. Someplace in the info you got when you purchased a license there are directions for how to do that.
Ruth