How to remove the extra line?

I had trouble understanding presents an output: I have extra space that appear on some of my paintings seen in the Firefox browser, but can't seen with Internet Explorer. My site is: http://www.raganiworld.com/. I'm doing something wrong? This problem is not limited to my homepage, and it's horrible! Anyone have any ideas?
Thank you
Ragani

-Change

on this subject.

and see what happens.

--
Murray - ICQ 71997575
Adobe Community Expert
(If you * MUST * write me, don't don't LAUGH when you do!)
==================
http://www.dreamweavermx-templates.com - template Triage!
http://www.projectseven.com/go - DW FAQs, tutorials & resources
http://www.dwfaq.com - DW FAQs, tutorials & resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================

"Ragani" wrote in message
News:f3ru1q$QF$1@forums. Macromedia.com...
> Dear Murray,.
> I checked through the html code, but not

tag is on my home page - it's
> what
> was so confusing to me. So I'm still here, scratching my head, even though I'm
> will
> to try what Walt (and everyone else here!) recommended and optimize the
> pages
> first and see what they look like eventually.
> Thanks for your help!
> Ragani
>

Tags: Dreamweaver

Similar Questions

  • How to remove the extra space of oracle database column

    How to remove the extra space of oracle database column. I would like to clean up the column in the database by deleting the extra space is entered by the dataentery people.

    When I run the query:
    SELECT
    ROWID, C.CODETABLE_ID, C.CODEVALUE_ID, C.DESCR, LENGTH (C.CODEVALUE_ID).
    C.OBSOLETE_DT, C.RECORDSOURCE, C.CREATED_DT,
    C.CREATEDBY, C.LASTUPDATED_DT, C.LASTUPDATEDBY
    OF CODEVALUE C
    Where LENGTH (C.CODEVALUE_ID) > 6

    the data type is varchar2 and I would get rid of the any extra blank space added to the column. in my case, if the length is greater than 6

    Hello

    user452051 wrote:
    Thanks for the reply. Why should I have this line?

    AND codevlaue_id! = TRIM (codevalue_id) - see note below
    ;

    I just changed my post when you posted this. The explanation is there now:

    Frank Kulash wrote:
    ...
    The condition "codevlaue_id!" = TRIM (codevalue_id)"does not change the results of everything, but it can make the most effective statement if there are lines where codevalue_id is on 6 characters long, but contains no additional space. It will prevent the triggers from firing and redo the data generated.

  • How to remove the new line?

    Hello

    I read a text file using java and send its contents by mail. I want to remove space (new line) as shown below in line 3. How can I do in java?

    Content of the file text (line numbers for reference)

    Line1: Sales details 1
    Row2: CN P1 C1 E1 1,958
    Line 3:
    4: Sales details 2
    Line5: CN P2 C2 E2 2,529

    Thank you
    K. Henry

    May not be more obvious.

    if(!(members.contains(strLine)) &&!"".equals(strLine.trim()))
    
  • How to remove the black line with a canvas stacked at run time?

    Hi all
    I developed a canvas stacked in a table of content, when I run the form takes the apeared canvas stacked with a black line.
    How to remove this line, or how to remove this line at run time?
    I tried to do by putting (no line) in the Toolbox of the line color tool after selecting black line one and after selecting the stacked another painting once, but this has not solved the problem!

    I need something else:
    I put the canvas stacked to the block of data in detail and did not appear since I run the query in the database block
    How to make appear stacked directly canvas before you run the query in the master data block?

    What is your version of forms? I don't know what black line you're talking about.

    Regarding the display of the canvas, first make sure it isn't about who has the focus and she rides (located under the canvas completely or partially) your canvas stacked, this will cause to the canvas to hide in order to display the item that has the focus. And you can also try using SHOW_VIEW ('your_stacked_canvas'); in your form, this will show the stacked canvas.

    Tony

  • I have two copies of my e-mail and files in Thunderbird and only need a copy; How to remove the extra?

    So I have two folders with my email address listed; and all subfolders, but do not know how I created two, I need one. There is no way to remove the second useless information that I see.

    Right-click on the folder, select settings. At the bottom of the list, use the account settings button.

  • Re: How to remove the black lines that prints when I use my ADF?

    I have an Officejet 6500 has more.  I only get the double lines when using the document feeder.  Fine when I use the flat bed.  I thoroughly cleaned the glass, and it makes no difference.  Help!

    The ADF in the Officejet 6500 a scanner glass is a bit more difficult to access, but the video in the third step of the second Solution in the here document will show how to clean this area.

  • How to remove the jump line, characters and past of a table column?

    HII,

    I m using 4 Apex.
    I m find the problem by removing the line break, characters and captures existing data in the column of the table.


    thnx in advance

    for example

    replace(replace(l_string_var, chr(10)),chr(13))
    

    Best regards
    Marko

    Published by: Marko Goricki, January 17, 2011 10:52

  • How to remove the last line of Utl_file

    Hi I have a requirement to write the output to a file. But everything I try the last line is coming as white. I can't understand why UTL_file last blank line as null. Is aby wat to fix this problem?

    /

    Declare

    Lfilehandler Utl_File.File_Type;

    Lfilepath varchar2 (100);

    Varchar2 (100) Lfilename: = "TESTFATCAFILEGEN.txt";

    Lhead VARCHAR2 (2000);

    Begin

    Dbms_output.put_line (' started read directories ");

    SELECT Filepath

    IN Lfilepath

    OF Interfacefileformathdrtbl

    WHERE Interfaceid = "FATCAPREXTFEED";

    Dbms_output.put_line ('found directory');

    Lhead: = ' this is a test generated file to test if the generation of the file that is happening or not. "

    Lfilehandler: = Utl_File.Fopen (Lfilepath, Lfilename, 'W');

    Utl_File.PUTF (Lfilehandler, Lhead |) '\n');

    Utl_File.fclose (Lfilehandler);

    Dbms_output.put_line ('generation of the file is complete");

    exception

    While others then

    Dbms_output.put_line ('down in the generation of file');

    Dbms_output.put_line ("sqlerr" |) SQLERRM);

    End;

    /

    UTL_FILE adds always new line at the end of the file if you use text mode. You must use the byte mode:

    Declare

    Lfilehandler Utl_File.File_Type;

    Lfilepath varchar2 (100);

    Varchar2 (100) Lfilename: = "TESTFATCAFILEGEN.txt";

    Lhead VARCHAR2 (2000);

    Begin

    Dbms_output.put_line (' started read directories ");

    SELECT Filepath

    IN Lfilepath

    OF Interfacefileformathdrtbl

    WHERE Interfaceid = "FATCAPREXTFEED";

    Dbms_output.put_line ('found directory');

    Lhead: = ' this is a test generated file to test if the generation of the file that is happening or not. "

    Lfilehandler: = Utl_File.Fopen (Lfilepath, Lfilename, 'WB');

    Utl_File.Put_RAW (Lfilehandler, UTL_RAW. CAST_TO_RAW (Lhead));

    Utl_File.fclose (Lfilehandler);

    Dbms_output.put_line ('generation of the file is complete");

    exception

    While others then

    Dbms_output.put_line ('down in the generation of file');

    Dbms_output.put_line ("sqlerr" |) SQLERRM);

    End;

    /

    SY.

  • How to remove the blue line, the Date and the name of your Signature blocks?

    We would use esign for documents; However, these documents are dated elsewhere and the signature should not be dated. Is there a way to turn the blue line, power in esign etc on and off? Thank you!

    Hi Lillian,

    Then, it seems you are the user and does not take into account admin. Pouvez you inbox me your email address recorded so I can verify your account?

    Kind regards

    -Usman

  • How to remove the extra homepage

    Hi friends,

    I MotoG (2nd Gen) and after the update of the lollipop, I have provided zero factory my phone.

    After setting up my phone, I find this screenpage extra out of my only original and iam that it is difficult to remove.

    Sometimes when I add my google account to my other phone wise, that is not there.

    Thanks in advance

    Concerning

    Dinesh

    Click on the button of three lines on the home screen and sign our of this google now, after this will be removed.thx

  • How to remove the extra space between two Table HTML

    Hello

    I wrote a code for printing costs. But there is more space between two Table Html, how I can remove it.

    Please run that Code

    Start

    HTP.p (')
    < html >
    (< body > ');

    HTP.p (')
    < TABLE align = "left" width = "500" cellspacing = "0" cellpadding = "0" border = "1" >
    < tr > < td align = 'right' white-space: nowrap; > Ph-2201751 < table >
    < td > < table >
    < /tr >
    < tr > < td align = "center" white-space: nowrap; > < B > < table > < /B > SATYAM MODERN PUBLIC SCHOOL
    < td > < table >
    < /tr >
    < b >
    < td align = "center" white-space: nowrap; > < i > < H3 > (AFFILIATED to THE CBSC, NEW DELHI CODE No. 53544) < / H3 > < /I > < table >
    < td > < table >
    < /tr >
    < tr > < td align = "center" white-space: nowrap; > new colony Braham, - 131001 (h) < table >
    < td > < table >
    < /tr >
    < tr > < td align = "center" white-space: nowrap; > RECEPTION COSTS < table >
    < td > < table >
    < /tr >
    < /table >
    < TABLE width = "500" cellspacing = "0" cellpadding = "0" border = "1" >
    < b >
    < td width = "100" white-space: nowrap; > receipt no.: < table >
    < td width = "100" white-space: nowrap; > Date received: < table >
    < /tr >
    < b >
    < td width = "100" white-space: nowrap; > name: < table >
    < td width = "100" white-space: nowrap; > father name: < table >
    < /tr >
    < b >
    < td width = "100" white-space: nowrap; > class & s: < table >
    < td width = "100" white-space: nowrap; > A/C No. : < table >
    < /tr >
    < b >
    < td width = "100" white-space: nowrap; > from: < table >
    < td width = "100" white-space: nowrap; > to: < table >
    < /tr >

    (< /table > ');
    HTP.p (')
    < / body >
    (< / html > ');
    end;


    Thank you

    Ed

    Hello

    HTML is valid, that your code print?

    
    

    Wouldn't be as below?

    
    

    BR, Jari

    Published by: jarola on December 18, 2009 15:22
    I test your code
    http://Apex.Oracle.com/pls/OTN/f?p=40323:25
    I can't see any extra space between the tables

  • I have two folders in the same subdirectory with the same name. How to remove the extra folder?

    I have 2 directories "documents" located in the same directory. They are as well located in C:\Documents and Settings\ [user_name]------directory. Duplicate folder is automatically updated with the same file names when I add files in the original folder. It looks like a pointer to the original folder, when I try to delete the duplicate directory. I get the following error message.

    Can't delete My Documents: it is used by another person or program.
    Close all programs that might be using the file and try again.

    I deleted all files in the directory, rebooted the computer and attempted to delete the now empty folder and I get the same error message. Can you help me remove this duplicate folder.

    Note:
    ------

    I am not able to rename the duplicate folder... If I try to rename, the original folder is renamed... But not the duplicate. Also the duplicate folder becomes empty (since it runs a pointer to the original folder, when the double original of renowned gets is empty)

    Mager

    In Windows XP, all user folders were located under the C:\Documents and Settings folder.

    In Vista , all user folders are located under the folder C:\Users .

    Vista Documents and Settings folder is not a real file it's a junction folder that points to the Folder C:\Users.

    A junction is as a shortcut that points to another file, that is why these records have a shortcut (arrow) overlay icon. In Vista, the only reason why the Documents and Settings junction is for the old installers who are looking for a Documents and Settings folder. When they try to access the folder Documents and Settings, the junction in silence re - runs Setup to the C:\Users folder.

    The default permissions for the Documents and Settings junction is access denied, even for the administrators of .

    The only way that a user can access this file actually is if the access permissions have been changed.

    For a more detailed description of this topic and a list of all the junctions see the following Web site.

    Windows Vista Junction Points:
    http://www.Svrops.com/Svrops/articles/jpoints.htm

    I recommend that you move all your files and immediately stop using the Documents and Settings folder to avoid more problems.

    If this just started recently, I recommend that you use the system restore back to a point before the documents and settings folder was first access.

    Ronnie Vernon MVP

  • How to remove the default line break when you export in XML format?

    Hello

    I'm using FDK 11 to convert a FrameMaker to XML file. Basic example as in the "guide structured Import/Export API Programmer" works very well. But all my files frame long paragraphs which, then the conversion is a line break after a length that appear to be the default. Hereby, the length of the XML and the readability becomes tedious. Here is the snapshot of the transformation and the piece of code used. Please let me know if there is a function that allows to eliminate this default behavior.

    #include "futils.h".

    extern VoidT Structured_ApiEmergency ((VoidT)) FARGS;

    extern VoidT Structured_ApiInitialize ((init IntT)) FARGS;

    extern VoidT Structured_ApiCommand ((command IntT)) FARGS;

    extern VoidT Structured_ApiNotify FARGS ((IntT notification,

    F_ObjHandleT docId, sparm StringT,

    IntT iparm));

    VoidT F_ApiEmergency() {}

    Structured_ApiEmergency();

    }

    VoidT F_ApiInitialize (IntT init) {}

    Structured_ApiInitialize (init);

    }

    VoidT F_ApiCommand (IntT command) {}

    Structured_ApiCommand (Command);

    }

    VoidT F_ApiNotify (IntT notification,

    F_ObjHandleT docId, StringT, IntT iparm sparm) {}

    Structured_ApiNotify (notification, docId, sparm, iparm);

    }

    Export.jpg

    Thank you

    Vincent

    [Message moved from General Discussion by moderator]

    Hi Vincent,.

    You use a structured application? If so, you might try reading/writing as a rule:

    writer

    {

    line break is 1000 characters;

    }

    .. .or whatever length you deem appropriate.

    Russ

  • Remove the extra lines in the table

    Hello

    I created an RTF model and have placed a table, there are a few additional lines when you preview:

    C rear rental (PAYMENTS payments) EC

    C Accordcomite
    Customer C
    Start date of contract C
    Start date of the C back
    C balance o/s
    C EC arrears Total

    <? for-each: LINE? > AAGRNUM
    CUSTOMER

    ARREARS_START_DATE
    0.00
    0.00


    <? end foreach? >

    This has something to do with the for each loop, where this tag is placed?

    Can anyone help?

    Thank you

    Can you send me your files?

  • How to remove gridlines Extras on opening the file

    Can someone help me on how to remove the 'Extras' at the start of Photoshop CC2015?

    Whenever I open a file, the grid appears and have to remove every time before you work on the file, very irritating... any ideas?

    See you soon

    Hi marko,.

    Please save a file with the grid Turned Off (Ctrl/Cmd + ') view > Show > grid uncheck '

    Then, open a new file and check if it is disabled.

    Kind regards

    Assani

Maybe you are looking for

  • How to unlock

    Please help meI have a laptop Compaq Presario CQ62-238XDWhen I turn it on it says: (enter the password administrator or power on password) is the key to the system turn off: 52124743) Please help

  • Do not Google map pins present in Firefox 8.0

    Pins to Google where they are supposed to be flash and then disappear. If you click on the place where the stem is supposed to be the info bubble will appear as usual. Pines do not appear only the map. Problem did not appear in previous versions of F

  • Compatibility of Adobe Acrobat and Reader DC

    Problems with Adobe Acrobat DC gel/accident. On more than one computer, not one with 10.11.4. In addition, Adobe and MS Office do not seem to play. All Office products, freezing too. Having to manually restart computer.

  • Problem with fan for laptop!

    Hello, I bought a HP 2000-2b43dxbefore 15 days and I am sneaking suspicion there is problem wih fan / air on my laptop. When I turned my laptop first and next 2-3 days, my fan was silent until I couldn't hear his work so its normal because when I tur

  • Pls help me: has

    Excuse me can you help me to active the wireless My Windows 7 Ultimate x 64 PCI\VEN_1814 & DEV_3290 & SUBSYS_18EC103C & REV_00 PCI\VEN_1814 & DEV_3290 & SUBSYS_18EC103C PCI\VEN_1814 & DEV_3290 & CC_028000 my computer HP pavilion note book pc g6