Huge Gaps between lines... Please Help!!!

Hello, On various sites when i view them i get really large gaps between lines. view this screen shot:
http://www.meyerfredericks.com/badbrowser.jpg
How do i fix this... it does it on firefox now too since i upgraded to 3.0. So i have two browsers that do this. Please help, it's soooo annoying!

Hi and Welcome to Apple Discussions...
For both browsers, Safari and Firefox locate these files:
com.apple.safari.plist and com.mozilla.plist
The are here: /Users/YourName/Library/Preferences. From the Preferences folder, drag those files to the trash, empty the trash and reboot. It's ok to delete a pref file, sometimes they can get corrupted.
Also, get Onyx, it's FREE and available here; http://www.apple.com/downloads/macosx/systemdiskutilities/onyx.html
Download and install Onyx. Run the Maintenance and Cleaning Scripts once a week to keep your browsers happy.
Carolyn

Similar Messages

  • When I open firefox, there is a HUGE gap between the tabs and the menu - it's taking up room on my screen.

    I wish I could add a picture. But the menu bar
    is here (for example)
    the back buttons (which don't work) are here
    and the tabs
    are
    way
    down here
    There is a HUGE gap between them and it's taking up real estate on my screen! How do I fix this.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    In Firefox 4 you can use one of these to start in <u>[[Safe mode]]</u>:
    * Help > Restart with Add-ons Disabled
    * Hold down the Shift key while double clicking the Firefox desktop shortcut (Windows)
    See:
    * [[Troubleshooting extensions and themes]]

  • Huge gap between icons in menu bar

    Lately the menu bar will randomly throw in a huge gap between icons. Initially I thought it was a specific app, but now it's happening with all sorts of random icons there...definitely not the same icon each time.
    The icons you see on the left are the ones I launched after the gap appeared.
    Restarting my machine seems to be the only solution to removing the gap.
    http://share.shpigford.com/images/menubargap-20090323-113604.png
    Message was edited by: Josh Pigford

    I've tried trashing the prefs for this and have the icons down to just the Apple ones. Then, as I slowly add other menu bar items, they'll start adding the gap directly next to the Apple items.
    http://share.shpigford.com/images/menubar-20090507-074520.png
    But the thing is, it doesn't matter which items are on the left. Different ones can be next to the gap and it still is there.
    Restarting or logging out/in so far has been the only fix (albeit, temporary).

  • I want to downgrade my 2011 mac mini server to mac os x, i want to downgrade my 2011 mac mini server to mac os x i have the disks but the mini willl not reboot the apple changing to a circle with a line please help-

    i want to downgrade my 2011 mac mini server to mac os x i have the disks but the mini willl not reboot the apple changing to a circle with a line please help-

    bpruse,  I may be completely off-track for your issue, but I had a similar situation where I wanted to downgrade a Mac Pro from Server to plain OS X and it would not boot from the OS X install disk.
    I was attempting to use a full-install OS X.6.x disc with an earlier SL version than that which originally came installed on the Mac Pro.  After two or three hours of fiddling, I figured it out and used the discs that came with the system.
    However, I don't know how that would work in your case if this is the mini server-version.  I'm sure the disks would only have Server on them.  Worse-case scenario, find out which X.6.x the OEM disc is installing and get an OS X disc with a new installer.
    HTH.
    lnail

  • Issue with long gaps between lines in both Mail AND Address Book

    Hey folks,
    I'm having a weird problem... I've done a bit of research on here but I have yet to find my exact issue... I was wondering if anyone can shed some light on this for me!!
    This problem has been happening in my Address Book app for awhile now, but more recently started happening in Mail - there are long gaps in between lines such as Name, Date, Subject, From, ect...etc... Plus, in Mail, when I hover over the To and From names, the highlight bubble is really large! It's very strange... check out this screen grab...
    I've tried repairing permissions but that didn't seem to help.
    My Mail only did this after quitting the program and starting it back up, but now it does it all the time. Address Book has been having this issue for quite some time.
    Any help would be much appreciated!!!
    Thanks in advance...
    - Joe Ciaramella
    G4 Dual 1ghz   Mac OS X (10.4.4)  

    Ernie,
    Thanks so much for your help... To answer your question, yes I did research those topics but finding things in bits and pieces didn't seem to do the trick. Well, tonight I ran Font Finagler AND I reinstalled Library > Fonts from my OS X install disc... And low and behold, MY PROBLEMS ARE CURED!!!!
    So thanks for giving me the link to those other posts which seemed to have all the info I needed.
    Take care...
    - Joe Ciaramella

  • Cant get it to replace or print to new line, please help

    2 problems. The instructions are to first replace each 's' with '$' and then print each word to a new line. Here is an example:
    Give me a phrase: Viva Las Vegas, babies!
    Viva
    La$
    Vega$,
    babie$.
    Here is my code that is not working:
    import java.util.*;
    public class StringEdit {
         private static Scanner input ;
         private static String makeMoney[] ;
         public static void main(String[] args)throws Exception {
              System.out.print ("Give me a phrase: ") ;
              input = new Scanner (System.in) ;
              makeMoney = input.nextLine().split(" ") ;
              //makeMoney = makeMoney.replace("s", "$") ;
              int i = 0;
              while (i < makeMoney.length) ;{
              if (makeMoney.contains("s")){
                   System.out.println("Show me here");
                   makeMoney[i].replace("s", "$");
              if (makeMoney[i].contains("S")){
                   System.out.println("Show 2");
                   makeMoney[i].replace("S", "$");
              System.out.print(makeMoney[i].toString());
              i++ ;
    Please help me figure out what is wrong

    your first post was the one which you really wanted to use for the assignment in order to get the output you desire. anyways like jverd said that you cannot update string because they are immutable. you can always do this
    makeMoney[i] = makeMoney.replace(blah blah).
    here is your program
    import java.util.*;
    public class StringEdit {
         private static Scanner input ;
         private static String makeMoney[] ;
         public static void main(String[] args)throws Exception {
              System.out.print ("Give me a phrase: ") ;
              input = new Scanner (System.in) ;
              makeMoney = input.nextLine().split(" ") ;
              //makeMoney = makeMoney.replace("s", "$") ;
              int i = 0;
              while (i < makeMoney.length) {
              if (makeMoney.contains("s")){
                   System.out.println("");
              makeMoney[i] =     makeMoney[i].replace("s", "$");
              if (makeMoney[i].contains("S")){
                   System.out.println("");
              makeMoney[i] =      makeMoney[i].replace("S", "$");
              System.out.print(makeMoney[i].toString());
              i++ ;
    output
    Give me a phrase: Viva Las Vegas
    Viva
    La$
    Vega$Message was edited by:
    fastmike

  • 50 fps is play to fast on time line , PLEASE HELP EMERGEANCY

    Hi.
    We has shooted yesterday on RED in 3K 50fps(slow motion)
    When i play QT rpoxy files, its OK, but when i do Log&Transfer RED files in FC and then put them on timeline they play very fast! The FCP creat automaticly project with 25fps.I tryed to convert with REDRushes to ProRes422 files. And get same result.They play Ok in QuickTime but play fast on timeline when i drag them.Just one differece is- Proxy files dont play on time line(i get red line,- need to render),but converted qt files(ProRes) play with no prob on timeline(but very fast)
    Ok, Of course i can do render proxy files in FC(Need Render),but he need 24hours for it.Bu i have not much time
    What shoud i do?!!
    Please help!
    Thank you!

    Call your local user's group and see if someone with a much faster computer will come to your help. I don't think you can move forward until you render. Once rendered you should be able to change the speed of the clip to anything you want or need (modify - change speed - etc.). I hope someone who knows more than me responds, but that's all I can think of.
    Goog luck,
    corpguy

  • Published site has huge gap between content and footer

    So i have just published my site and when i look at it after being published i have a good 2 inch gap between the bottom of the content and the footer.
    I have read up on a number of bits and pieces and they say you mauy have a hidden container on the pages, which i totally accepted so i searched and nothing. I then thought it might be a issue with the master page i was using, so checked that. Couldnt see it.
    However when i looked through my site and saw the master pages i used i had a mix and some worked and some didnt. Im lost!!!
    I launch on Sat and its a bit of a pain. Has anyone had this issue? The preivew looks fine, so im not sure where this gap is coming from.
    Thanks in advance!

    When Sticky Footer is checked, the footer will stick to the bottom of the browser window unless the page is taller than the browser window.
    Glad that I could be of help.
    Regards,
    Sachin

  • A single vertical line, please help! :)

    Hi,
    I have a PowerBook G3 Pismo and a pink vertical line just randomly appeared on the screen and I can't get rid of it? Somebody please help and tell me what to do here. It just happened and nothing changed hardware/software wise on the machine.
    Thanks!

    Thank you for your help. This would be one of my older Macs...I have a new iMac as my workstation/server, 3 iMac G3's iMac G4, iMac G5, eMac, Mac Mini, PowerBook G4, 2 iBook G4s, iBook G3, MacBook, MacBook Pro...I think that I could live with the line on the screen, but it would be nice if I could replace the whole display/ribbon cable assembly to make it even better. I upgraded the entire machine inside and out except for the display and when I finished..I turned it on and it was fine..about 3 weeks later a pink line appeared...seems that it could be a simple pinched/broken cable? Who knows, but I wish I could connect it to an external monitor..missing that VGA adapter..thanks though..I wonder why it randomly appeared when the display hinge was rarely opened/closed..any ideas why it is only a single line and not multiple? I showed it to my friend who is into tech and he believes that that particular column of pixels are simply dead..appreciate it..

  • IPhone 4s camera issue, extra grid line - please help!

    Hi everyone,
    I have a lovely new 4s, have had it for less than 24 hours and there is a problem with the camera that I cannot find anywhere else on the web yet... I have an extra grid line that does not disappear and which does show up on the photos I take!
    Details: the grid line is on the main rear facing camera only; it is there whether the grid is turned on or off; it appears as a grid line on the photos you take; the camera is up-to-date with the latest version; I have tried restarting the phone; it only happened after I switched to HDR mode and then when I turned HDR off, this mysterious extra grid line was there; the line is only there in photo mode - it disappears when switched to video mode...
    and I think that's those are all the details I can give you!
    Is anyone experiencing / experienced this same problem? If so, please help!! Thank you so much!
    Thanks everyone, and Happy Holidays to all!

    Hi KiltedTim. Thanks, yes, I will definitely have to do this if I can't get rid of it - just so annoying, because won't be able to go for a while, until after the Christmas holidays, which means I'll be without my cool iPhone camera!
    Also - the one thing I forgot to mention in my original post is that I took several photos which all came out perfectly. The issue only happened after the first time I switched HDR mode on and then turned it back off.
    Thanks for your help,
    Any more suggestions out there anyone? Thanks all!

  • Yes/No fields, single line. Long question in seperate text field. How to avoid gap between lines?

    I have made two single-choice fields side by side (Yes and No) on one single line. The question for the choices is long, so I wrote it in a separate text field placed above the Yes and No fields. If I use the Yes field for the question, the No field would end up too far to the right.
    Question ....
    [Single-choice text fields space]
    [  ] Yes
    [  ] No
    Problem now is there's too much space under the question, since the automatic text fields in the Yes and No fields are still there, though "invisible"/not used. How can I have a long question on a single line and have the Yes and No fields on the next line without a big gap between the two lines? Is it possible to delete the automatic text field in the Yes and No fields?
    Just realised that if one makes a single Yes field, and a single No field to the right, you are ("of course") able to mark both the fields, since they are not linked anymore as with two choices in one field. The point with the single choice fields is then lost; to be able to choose only either one. Yes or No.
    [X] Yes   [X] No

    The Single Choice is designed such that you have a single label and multiple choices, but the user can only select a single choice (in your case Yes or No).  If you like the choices to appear side by side you can deselect Stack Choices Vertically in the Field Properties widget.  You should also set the Label to Above.  See the attached image.
    Jeff Canepa
    Software Quality Engineer
    Adobe Systems, Inc.
    [email protected]

  • Music stopping and starting, huge gaps between songs

    I listen to music via Match daily.  Beginning last month I've been experiencing music stopping and starting, big gaps between tracks, and clunky behavior in general.  It's comes and goes but over the last week it's been terrible.  Is anyone experiencing this?  I have tried re-initializing match on my iPhone but it doesn't seem to work.

    Go to Edit > Preferences > Playback. Turn off crossfading if enabled...
    iTunes will attempt to play tracks that were recorded gaplessly without adding an artifical gap, it won't attempt to remove the gaps between tracks that were there in the original recording, unless you've enabled crossfade. You can't make it add gaps to what should be gapless transitons on the album. If you really need this you could make a playlist and include blank mp3s as a separator.
    tt2

  • The view, copy, edit, tools bar at the top of the page hasvanished along w/ the next line down which has the refresh key and search line please help.

    ''locking as a duplicate - https://support.mozilla.com/en-US/questions/793163''
    @ weeks ago the view, copy, edit, files, tools, bar at the top of the page disappeared. Then last week the next row that contained back, refresh, and a search bar disappeared. Please help me fix this, as I am unable to clear cookies, cache, history or use my printer.

    See [[menu bar is missing]].

  • AP Express wont share connection between computers PLEASE HELP!

    I have a powerbook G4 connected to a wireless network I have created. I can connect to the internet wirelessly through the airport, but when other other computers try to join they are brought to the sign in page of my ISP. Previously, I had the airport set up so as long as one computer had signed into my ISP all the other computers could share this connection. How do I change the settings on my airport to get this working again? Basically, it seems like all the computers can join the network no problem, but since my ISP only allows one user to log in at once only one computer can access the internet and the other computers are stuck on the sign in page. Ive tried changing the settings in the airport utility to distribute ISP addresses, but when I restart the airport none of the computers will connect to the internet. Can someone please help???

    Ive tried
    changing the settings in the airport utility to
    distribute ISP addresses, but when I restart the
    airport none of the computers will connect to the
    internet.
    You need to have the Airport distribute IP addresses via NAT sharing the single address which your ISP gives you. As this is not configured then you will experience the sign in page problem you are having.
    Configure the Airport to distribute IP addresses, restart.
    Once it has restarted, see if a computer can connect to the internet.
    If not in a browser try http://17.254.0.91
    and report back.
    iFelix

  • Huge problems...please help

    My iPod won't reset or charge or connect to my computer. So I can't charge it up or delete my songs. But when I did try to charge my iPod earlier it was beeping at me and the 'do not disconnect' sign and logos were all in black
    and white.
    Please help because I haven't got a clue what's going on!

    Welcome to Apple Discussions!
    Try connecting it to an AC adapter and resetting it...
    http://docs.info.apple.com/article.html?artnum=61705
    See if you connect it to the computer and open the iPod updater what happens. Can you restore...
    http://docs.info.apple.com/article.html?artnum=60983
    The beeping could signify a harddrive problem so the iPod may need repair. First check out this link though...
    http://docs.info.apple.com/article.html?artnum=61711
    Here is how to send it in for repair...
    http://depot.info.apple.com/ipod
    btabz

Maybe you are looking for

  • Link to Foxpro: memo fields access failure

    I try to select some fields from FoxPro table via ODBC Generic Connectivity. I can select all fields, except Memo (Oracle translates them as LONG) select "Memofield" from table@foxpro return error [Generic Connectivity Using ODBC] (SQL State: 00000;

  • URGENT: API to Schedule Sales Order Line

    Hi, Could anybody share me API to schedule sales order line? Actuaaly I need to release sales order by API but first need to do scheduling for lines. Thanks,

  • Dynamic UIs: Error: Duplicate variable name

    Hello Friends I am facing one difficulty in dynamic UIs and i.e. whenever I want to add some more Dynamic UIs to the existing one it throws error like "Duplicate valriable name". I am having my code in wdDoModifyView Whatever I want to show in the st

  • ZCM 11.2.3a dynamic groups summery incorrect

    Hi there When creating a dynamic group for Agent version = 10.3.1.34138 (example) I click the preview and it shows me 20 members. Going to each of those devices in the preview list shows me the correct agent version as per the filter. (10.3.1.34138)

  • CRM cookbook.

    Hi technocrakes.. I am a starter in mySAP CRM. I need sum help from u guys.. Can neone send me CRM cookbook?? And if possible Middleware cookbook and PCUI cookbook. thanks, gaurav