"Do not include a break inside the TD tag" is ignored

In Edit | Preferences | Code Format in DW CS5, the setting "Do not include a break inside the TD tag" is ticked but DW is still putting a line break in the tag like this...
<td> </td>
Any idea why the setting is being ignored?
Malcolm

Artisan Internet wrote:
Both fair comments, many thanks. The reason I want to remove the space is because it's impossible to have an empty row with a height of less than about 6 pixels (used as a spacer or for coloured divider lines of different thicknesses) when there's a space within the TD tag. The space counts as a character which means that the row can't be less than the height of a character.
I know I could make a transparent spacer GIF, and create custom styles for different horizontal rules in the stylesheet, but it's always been a lot quicker to simply use a table row with a height.
Looks like I'll just have to carry on deleting the spaces from the code.
Malcolm
Your best solution is to insert a transparent spacer.gif and give it the dimensions you want. That will overrule all the 'empty' defaults. Please remember, the spacer need only be in one cell of the row. All other cells, unless they have larger content, will follow suit... applies to rows and columns.
(The 'height' attribute by itself, as you've discovered, is kind of dicey. So is the width.)

Similar Messages

  • Serbian characters š,đ,č,ć,ž are not included in most of the fonts

    Serbian characters are not included in most of the fonts in Adobe products and its bad for creativity. I wonder what can I do to change this? Where to start? Any advice?

    Your kindness has inspired me to write this article
    http://bzivkovicsavke.blogspot.com/2010/11/adobe-systems-incorporated-je-prijatelj.html
    . Although we do not understand Serbian language, you can translate it into
    Google.
    Bojan Živković Savke
    My profiles:  <http://picasaweb.google.com/home>
    Picasa<http://picasaweb.google.com/home>
    <http://wiki.answers.com/Q/User:Savke>
    Answers.com<http://wiki.answers.com/Q/User:Savke>
    <http://bzivkovicsavke.blogspot.com/>
    Blogger<http://bzivkovicsavke.blogspot.com/>
    <http://www.creemaginet.com/sajt/blog/6302> Blog
    RSS<http://www.creemaginet.com/sajt/blog/6302>
    Contact me: image: Skype/ bojan-zivkovic
    Signature powered by
    <http://www.wisestamp.com/email-install?utm_source=extension&utm_medium=email&utm_campaign= footer>
    WiseStamp<http://www.wisestamp.com/email-install?utm_source=extension&utm_medium=email&utm_campaign= footer>
    2010/11/9 Chris Cox <[email protected]>
    Yeah, most of those are not Adobe fonts and don't come with the Creative
    Suite or Photoshop.
    >
    >
    Right now, it appears that only our most recent fonts have complete Serbian
    glyphs:
    Garamond Premier Pro, Hypatia Sans Pro, Arno Pro, Minion Pro, Myriad Pro,
    Sava Pro, and Warnock Pro.
    >
    Our type team has said that all of our fonts going forward will have
    Serbian glyphs.
    >

  • I could not able to open a .doc,.xls,.ppt inside the iframe tag in IE7.

    Hi all,
    I could not able to open a .doc,.xls,.ppt inside the iframe tag in IE7.
    what should i do?

    Hi,
    Question is,: when ever i call the .doc,.ppt,.xls files are not coming inside the iframe tag in IE7
    I am keeping the all files in separate storage area lik d:/StorageLoc/Docs/Sample.doc
    when ever i am calling the sample.doc through web,
    http://localhost:8080/VContext/OpenFile
    i am accessing the word,ppt,xsl files inside iframe
    like
    var fils= "d:/StorageLoc/Docs/Sample.doc";
    <iframe src="/VContext/OpenFile?r2=fils"></iframe>
    OpenFile.java [servlet file]
    public void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException
    try
    String s2 = request.getParameter("r2");
    String s3 = null;
    String s4 = "txt";
    if(s3 != null && s3.equals("download"))
    response.setHeader("Content-disposition", "attachment;filename=output." + s4);
    if(s4 != null && s4.equals("pps"))
    response.setContentType("application/vnd.ms-powerpoint");
    if(s4 != null && s4.equals("doc"))
    response.setContentType("application/vnd.word");
    if(s4 != null && s4.equals("tif"))
    response.setContentType("image/tif");
    }else
    response.setHeader("Content-disposition", "inline;");
    if(s4 != null && s4.equals("pdf"))
    response.setContentType("application/pdf");
    else
    response.setContentType("application/octet-stream");
    try
    javax.servlet.ServletOutputStream servletoutputstream = response.getOutputStream();
    File fileFound = new File(s1 + s2);
    if(!fileFound.exists())
    s2 = "Photos/notfound.gif";
    FileInputStream fileinputstream = new FileInputStream(s1 + s2);
    ByteArrayOutputStream bytearrayoutputstream = new ByteArrayOutputStream();
    byte abyte0[] = new byte[0x500000];
    do
    int i = fileinputstream.read(abyte0);
    if(i != -1)
    bytearrayoutputstream.write(abyte0, 0, i);
    } else
    byte abyte1[] = bytearrayoutputstream.toByteArray();
    response.setContentLength(abyte1.length);
    servletoutputstream.write(abyte1, 0, abyte1.length);
    servletoutputstream.flush();
    servletoutputstream.close();
    return;
    } while(true);
    catch(Exception e)
    System.out.println("IGST-INFO:" + e.getMessage());
    e.printStackTrace();
    }

  • Problem: ()[]{} invisible inside the script-tag

    Hi there,
    This morning I realised I had some strange problem with my Dreamweaver CS4. The brackets ()[]{} are somehow invisible inside the script-tag. I know they are still there, because they execute correctly and when I copy a codefragment with some (of the now invisible) brackets to another text-editor, they are there again.
    Let me give a short example:
    // Brackets are visible in DW   ()[]{} These are visible, tooI can see the "bla", but NOT the brackets before and after it. ()[]{} These here are visible again. 
    So you see, brackets are somehow made invisible inside the script-tag, and I'd like to know how to make them visible again.
    Here's what I tried so far (everything without success):
    - restart Dreamweaver
    - restart PC
    - check the options menu (didn't find anything for this problem)
    - hide/show the script-tag using dreaweaver's feature for this.
      Intresting point here: when the part where the brackets are, are collapsed it shows me "()[]{}[..." as a preview. So even Dreamweaver "knows" the brackets are there, but still refuses to show them -_-
    - set the gui setting from "coder" to "classic" and back.
    Any help is appreciated!
    Thanks in advance, really need to solve this, since I am using alot of hardcoded 2-dimensional javascript arrays and therefore alot of []
    Best regards
    Michael

    Sorry for doubleposting, I should have read the manual for posting code :|
    here's the code I was giving as an example:
    <title>brackets work fine here: ()[]{}</title>
    <style type="text/css">
    .someclass {background:url(theseBracketsAreVisible.png)}
    </style>
    </head>
    <body>
    <div>()[]{} these are visible as well</div>
    <script language="javascript">()[]{}[bla]</script> I can see the "bla", but NOT the brackets before and after it.
    ()[]{} These here are visible again.
    </body>
    Sorry again..
    edit:
    I realised it hides words like "function" aswell o_O
    <script language="javascript">
    function test() {ar = new Array;ar = ["a","b","c"];alert(ar);};
    </script>
    The code above is visible for me in Dreamweaver like this:
    <script language="javascript">
    test ar =  Array;ar = "a","b","c";alertar;;
    </script>
    really strange..

  • Why would someone use the meta utf-8 tag inside the script tag?

    I have run into a number of sites that use the <meta utf-8> tag inside the <script> tag what is the use of it.
    How dose one write the utf-8 inside the script tag?

    csteinola wrote:
    > If I CFINCLUDE that cache file, the characters come out
    munged (non-utf-8
    > encoded).
    try prepending a <cfprocessingdirective
    pageencoding="utf-8"> to the file.

  • Exporting EPUB from InDesign CC not including line breaks

    I am done with a book and have it formatted the way I want. I am exporting it to EPUB through InDesign CC and previewing it in iBooks and also through Kindle previewer. Everything is fine except for one thing... where I have created page breaks, the exported file is not including them.
    I tried exporting to HTML just to see what it did and there is no line breaks there. I know its proprietary markup ( in kindle ) but I still would like to include them in a few specific places ( to mark seperations of chapters ).
    In kindle this is the tag they say to use: <mbp:pagebreak />
    In iBooks, I have not yet figured out how to create them, I am going to work on that today once I sort out the kindle version.
    Is there any way to force it to include line breaks on export. Or alternatively, I could export to HTML but I am having trouble figuring out how to go back to the EPUB format from there and also it didn't include the fonts, so there was other issues to consider as I have a custom font I was using for the headers that looks really good and matches the font on the book cover as well... so I really want to keep that consistent if possible.
    Are there any tricks or things I can try here to improve on my workflow and do a better job of seperating the chapters ?

    Ok, I hadn't tested the advanced options out in the export menu. It works and does so on both the iBooks and Kindle previewer.. which is good news since that is really important to me to try and find a workflow I can update both of these formats from when I continue to work on my book.
    The only strange part is that on some chapters its adding an extra blank page between the chapter and the next. What is odd is that it only happens on some of them (in the iBook reader only, the kindle previewer isn't doing this)
    I am going to look into this more closely but its not a major deal as I would prefer a little seperation in the chapters anyways, its not really a bad thing. It is just hard to figure out why its doing this.

  • Adobe Acrobat  X1 Pro- cannot edit a PDF we created. It says to use Live Cycle, Does this Adobe subscirption not include Live Cycle? The earlier version of Adobe did.

    Cannot edit a PDF we created in Adobe Acrobat X1 pro. The form tells use to use Live Cycle to edit. Does the X1 subscription not include Live Cycle? Our earlier versions of Adobe did include Live Cycle

    No. You have to purchase LCD separately now.
    On Mon, Apr 13, 2015 at 5:23 PM, celestes5673329 <[email protected]>

  • Documentation says not to use Commits inside the FM in the actions.. what about BAPI Commits?

    I see in the customization documentation that we should not be using Commit statements in the FMs inside the Actions.. what about when we're calling BAPIs and they require a BAPI commit call?
    thanks,
    Robert

    Hi Robert,
    For BAPIs you need to set the commit level in the action definition as for function modules. SAP help portal provides following information about BAPIs and COMMIT WORK:
    "The BAPI transaction model must afford the user explicit transaction control. Therefore, if several BAPIs are called together, the caller can decide him/herself when to execute a COMMIT WORK (or, as the case may be, a ROLLBACK WORK). This means that BAPIs themselves cannot (generally) execute a COMMIT WORK command."
    I hope this infomration can help
    Best wishes
    Christoph

  • Why is the fn: tag being ignored everywhere?

    Just trying to see if is useful... why do all the articles on taglibs ignore the fn: taglib? Even the IDE I use - borland JBuilder ignores it completely in its code assitance...
    Any particular reason?

    The fn: taglib is new with JSP 2.0 (JSTL 1.1). Most of the tutorials out there (and most of the servers out there last I checked) work with JSTL 1.0 which did not have the function library.

  • Php form not including a field in the email sent to me

    I have tried to add a phone field to an existing form on my site, I just duplicated the existing email field and changed to say phone instead. The form works fine except that the  email that comes through to me has all entered data from the form except for the phone field. Help would be great as I am a bit of a newbie.
    Here is the mail.php:
    <?php
        $name = $_REQUEST['name'] ;
        $email = $_REQUEST['email'] ;
        $phone = $_REQUEST['phone'] ;
        $comments = $_REQUEST['comments'] ;
        $message =
            Name: $name\n
            Email: $email\n
            Phone: $phone\n   
            Comments: $comments
        mail( "removedforprivacy", "Email from my website, sent by $name",
         $message, "From: $email"  );
    ?>
    Here is the form HTML:
    <form method="post">
                            <fieldset>
                                <ol>
                                    <li>
                                        <label for="name" id="name_label">Name</label>
                                        <input id="name" type="" value="Your Name" name="name" class="text-input" />
                                        <label class="error" for="name" id="name_error">This field is required.</label>
                                    </li>
                                    <li>
                                        <label for="email" id="email_label">Email</label>
                                        <input id="email" type="" value="Your Email" name="email" class="text-input" />
                                        <label class="error" for="email" id="email_error">This field is required.</label>
                                    </li>
        <li>
                                        <label for="phone" id="phone_label">Phone</label>
                                        <input id="phone" type="" value="Your Phone" name="phone" class="text-input" />
                                        <label class="error" for="name" id="phone_error">This field is required.</label>
                                    </li>                           
                                    <li>
                                        <label for="comments" id="comments_label">Boston Brewery Booking Requested Date</label>
                                        <textarea id="comments" type="" name="comments" class="text-input">Required Date</textarea>
                                        <label class="error" for="comments" id="comments_error">This field is required.</label>
                                    </li>
                                    <li>
                                        <button type="submit" name="submit" class="send" id="submit_btn" value="Send">Submit</button>
                                    </li>
                                </ol>
                            </fieldset>
                        </form>

    Your form and php works ok for me. I can't see a reason for it not to get the phone details.
    What happens if you move the phone variable to the top of the stack (not that it should make any difference)
    $phone = $_REQUEST['phone'] ;
    $name = $_REQUEST['name'] ;
    $email = $_REQUEST['email'] ;
    Phone: $phone\n
    Name: $name\n
    Email: $email\n

  • Folders and files are not set as links inside the ConsumerExplorer KM

    I use ConsumerExplorer as Layout Set on most of the KMs in our EP6 but some of them recently have problem showing the content with links. (If I have folder, I can't click to open because is not underlined as link. the same for files.) As I mention it happen just on the default Layout Set which is ConsumerExplorer and as I check all settings are correct on the ConsumerResourceRenderer and ConsumerCollectionRenderer. I did not update any of these settings. Just to be clear...it happened to some of the KMs the rest are set with the same Layout Set and there is no problem with them. Please if somebody have idea where could be the problem?

    Not the first or last time for this complaint. It's a failing in the Panther Finder, and beyond our powers to fix. Send Apple a Feedback:
    http://www.apple.com/macosx/feedback/
    They don't read these forums regularly.
    Quicksilver   Mac OS X (10.3.8)  

  • Scrolling not possible in BSP (inside the webdynpro area)

    Hi,
    I am having a BSP application which has a webdynpro application embedded in it inside an IFRAME. The size of my webdynpro application exceeds the size of the BSP page and hence the vertical scroll bars appear at the right side (These are scroll bars of the BSP application).
    But i am unable to scroll through the page using my mouse when the cursor is present over the webdynpro area. The same works fine if i keep the cursor over the BSP area.
    Is there a way to make the page scrollable irrespective of the position of the cursor?
    Thanks,
    Prasath N

    No solution. I am currently using the scroll bar of the webdynpro.

  • Should I believe the advice on internet sites to speed up Firefox and if so, why are these not included in Firefox in the first place? Do you recommend any of these, or have any of your own?

    I have already asked my question on the previous page!
    == User Agent ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4

    No. Many of those tweaks provide little, if any benefit, while others can get you banned from some websites for having too many connections to their website.

  • I can not buy gold coins inside the appstore

    y yyyyy

    We are fellow users here on these forums, we won't know why you are getting the message. You can contact iTunes Support via this link : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • How can I include a parsys inside a javascript function.

    I am using radio button provided by CQ5.4.
    I am writing a javascript function which checks whether a radio button is being clicked or not..
    If the radio button is being clicked an alert window is opening ..this means that function is being called when radio button is being clicked.
    but when I try to include parsys instead of alert window, when the radio button is being clicked..the parsys is not appearing..
    Can u please help me that how should i write the "<cq:include>" for parsys inside the javascript function so that it starts appearing on click of the radio button.
    THANKS
    ASHWANI

    Ashwani,
    I would recommend detecting the WCMMode and always showing the parsys if the page is displaying in edit or design mode:
    http://dev.day.com/docs/en/cq/current/javadoc/com/day/cq/wcm/api/WCMMode.html
    Unless there is a really good reason to hide the section from authors, it's generally confusing to authors to hide a section.  Additionally, hiding a parsys in JavaScript can cause strange artifacts as the drag and drop section of the parsys won't be hidden with the content of the parsys.
    -Dan

Maybe you are looking for

  • Can you pass parameters with sub queries

    I have created a Custom folder within a Business Area using a sql query that has multi sub queries. I need to be able to pass date parameters at the top level and at each sub query levels. Is this possible, or how can it be done in Discoverer? I have

  • Value of report bind variable in the add PL/SQL section?

    Hi all, I'm passing a page parameter into a report as a bind variable - this works. Now I need this same parameter value in the additional PL/SQL section of the report. I have browsed the forums & docs and seems like get_value(<param_name>) is suppos

  • Urgent regarding the Weblogic Application server

    Hi, In my previous applications I have used weblogic5.1.0 as our Application server. Now we know that Weblogic 6.1 is the latest version to implement J2EE technologies. I want to know any problems are there in using Weblogic 5.1.0 to implement J2EE t

  • I have this error ... please help

    Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers

  • Using the built in web cam

    I want to make a short little video using the webcam and I thought I could use imovie. I just wanted to send myself talking as a surpirse to my nephew. I can't figure out how to use the built in cam to do this. HELP!