Text Align and Other annoyances

I have upgraded from CS3 to CS5 and while i am mostly happy there are some really annoying bugs, features, or pieces of ill thought out logic in Dreamweaver.
I might be wrong but by default Dreamweaver is a a WYSIWYG editor. Therefore this should make it ideal for editing websites which have text in them. Lets assume that websites include single email campaigns, small static HTML brochure sites, through to large scale CMS websites. In each of these cases i might have the need to align a single piece of text to the right.
Now DW suggests everything like this should be driven by CSS. In in 90% of cases for general text layout i would agree i.e. default paragraph text size, default alignment, default line spacing, etc. These can then easily be adjusted throughout the website large or small by changing a simple bit off CSS in your style sheet.
But what if you just need 1 line of text to be different from "default" - CSS is not approrpiate here, and infact it would result in more code to achieve the same goal. why should i have to write a new style into my style sheet, and then link it with a class name, when a simple align="right" will work in that instance. In fact in all instances the chances are that piece of code will be shorter than the class="text-right" definition to apply the CSS (ignoring the CSS code too).
So why take the align buttons off the property inspector bar? Why make the developers life harder when he is using a tool to make it easier?
Another issue - which probably is more of a bug than anything. In code, Shift + Tab should outdent the code right. Highlight a block of code and this works. Why then does doing this for a single line of code delete the code?
I upgraded from CS3 because i was told that was the worst performing version of creative suite out there. And it was buggy as hell. But i am now finding that CS5 is not a great deal better - this applies through the other products too with Illustrator crashing as much as it ever did, il thought out removed features, etc. I am appalled by the quality of the new CS5 - especially as in my upgrade the fee was a good 30% more expensive than the american alternative.
And before you ask - the machine where i am experiencing this is more than adequate, Quad Core, 6gig of Ram, and on a fresh install of Windows 7.
An unhappy customer.

You may need to adjust your workflow to get the most out of CSS.
I find it works much better to identify the CSS IDs, selectors and class names I will be using in the site.  This bit of pre-planning gives me a basic stylesheet from which I can grab styles at will and add more to as needed.
/**BASIC LAYOUT**/
#wrapper { }
#header { }
#content { }
#footer { }
/**TEXT STYLES**/
#header h1 { }
#content h2 { }
#content h3 { }
#content p { }
#footer p { }
/**RE-USABLE CLASSES**/
.floatLt {float:left; width: 40%;}
.floatRt {float:right; width: 40%}
.clearing {clear:both}
.center {text-align:center}
.right {text-align:right}
/**LINKS**/
a { }
a:link { }
a:visited { ]
a:hover,
a:active,
a:focus { }
And if you plug all this into an external CSS file to which your HTML documents are linked, sitewide style changes take a minute or two instead of weeks and hours.
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists
http://alt-web.com/
http://twitter.com/altweb

Similar Messages

  • Conversation bubble text alignment (and other wrapping) broken... help.

    I have a Gen 2 8GB iPod Touch running the latest iOS4 (can't install iOS5 on this one).
    My problem is that text no longer wraps correctly in chat "conversation" bubbles (like in twitter app or words with friends chat interface).
    They're all over the shop.
    Other "Wrapping" and "Clear" type instances in other apps also fail to correctly insert the "line break" required for correct rendering.
    Can I upload screenshots here? YES!
    See examples.
    Tried rebooting iPod etc, btw.
    Many apps affected.
    This one is obvious. (Words with Friends)
    In landscape mode, these are meant to be be long boxes, one per line. ("Consume" App)
    The text at the bottom is meant to show a number of lines of information. They overlap on one line here. ("Consume" App)
    Thanks,
    NY

    No... I haven't.
    What kind of impact will that have for me?
    Such as:
    - Current place in Audiobook
    - Apps login (ie, Facebook, Words with friends)
    - Current games in progress (WWF)
    - App data (ie, Smurfs)
    It looks easy to do in iTunes... just wondering about the repercussions.
    Thanks for your input, lllaass.

  • New to CSS, text-align and line-height ok in 'Design', but not in browsers (IE 10 & Chrome) on Win8

    [DREAMWEAVER CC]
    I'm now learning CSS, and find that where I specify in an external style sheet
    h1 {
              font-family:Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", serif;
              text-align:center;
              color: black;
              font-size: 1em;
              font-weight: normal;
              font-style: normal;
              line-height: 3.0;
              letter-spacing: 0px;
              word-spacing: 10px;
    text-shadow: 3px 3px 5px #333;
    text-decoration: none ;
    text-transform: none;
    That, in DW Design, they look fine, but in Windows 8, IE 11 and ChromeVersion 31.0.1650.63 m   that the text-align: center; and the line-height: 3.0;  are ignored.
    I work around by specifying <tr align="center" height = "77">   shouldn't the text-align: center; and the line-height: 3.0;  be specifiable in my CSS??
    Thanks for any help!
    <tr height="77" align="center">
            <h1>
                <td bgcolor="CornSilk">1/28/2014</td>
                <td>the Sky</td>
                <td>Fate is the Hunter</td>
              <td >Ernest Gann</td>
                <td >John</td>
                <td >Jessica</td>
              <td><a href="http://www.amazon.com/FATE-HUNTER-Ernest-K-Gann/dp/0671636030/ref=sr_1_1?s=books&ie=UTF8&q id=1387462831&sr=1-1&keywords=ernest+gann">Learn More</a></td>
            </h1>
        </tr>

    hemmi1 wrote:
    [DREAMWEAVER CC]
    I'm now learning CSS, and find that where I specify in an external style sheet
    Not sure what it is you are trying to do but what you have at the moment is invalid code which is most likely why it doesn't work cross browser. (of cousre this css does not help  - line-height: 3.0; - 3.0 what? - px, ems?)
    Here's an example below of how you could do it. Give your table a class (below it is called .myTable) then you can start styling the <td> cell, and anything inside it by appending the element like an <h2> tag to the class name - .myTable h2
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Untitled Document</title>
    <style>
    .myTable {
        width: 900px;
        margin: 0 auto;
    .myTable td {
    font-family:Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", serif;
    width: 150px;
    .myTable h2 {
        margin: 0;
        padding: 0;
    text-align:center;
    color: black;
    font-size: 1em;
    line-height: 50px;
    word-spacing: 10px;
    text-shadow: 3px 3px 5px #333;
    .myTable a {
        display: block;
        text-align: center;
    </style>
    </head>
    <body>
    <table class="myTable" cellpadding="0" cellspacing="0" border="0">
    <tr>
    <td><h2>1/28/2014</h2></td>
    <td><h2>the Sky</h2></td>
    <td ><h2>Ernest Gann</h2></td>
    <td ><h2>John</h2></td>
    <td ><h2>Jessica</h2></td>
    <td><a href="http://www.amazon.com/FATE-HUNTER-Ernest-K-Gann/dp/0671636030/ref=sr_1 _1?s=books&ie=UTF8&qid=1387462831&sr=1-1&keywords=ernest+gann">Learn More</a></td>
    </tr>
    </table>
    </body>
    </html>

  • Several Subtle Improvements to Text Handling and Other Miscellany

    Don't get me wrong: Illustrator CS4 is great. I love it. And ignore, for the moment, the recent announcement that CS5 is already being rolled out in a few days. Maybe some of these things will be included in CS5. But if not, I'd make the following feature requests. I'd also love to hear if anyone has been thinking the same things.
    Check this link to see a graphical overview of all the items, too:
    http://www.meesez.com/illyimprove.pdf
    Improvements to Text Handling
    Unify text antialiasing program-wide. Right now, the pixel preview seems to rasterize text according to the "Type Optimized" algorithm, but Save for Web & Devices uses the "Art Optimized" algorithm. This creates a discrepancy between on-screen preview and web output, especially with very thin fonts. Ideally, there would be per-object antialiasing control, as in Photoshop, which would globally apply to on-screen display, pixel preview display, Save for Web & Devices, Export, and Rasterize.
    a. Make an option to view and manipulate the size and position of point type areas in terms of the actual size of the glyphs present, ignoring any blank space within or between the glyphs' bounding boxes — that is, the size that would be reported if the type was converted to outlines. This is opposed to the current system, which calculates the size and position of point type areas based on the entire bounding box size of each character, even when glyphs don't extend to the all edges of the bbox (which most don't). This would make it easier to fit headlines to exact sizes without having to outline the text.
    b. Allow smart guides and snapping to detect anchors and paths on live glyphs.
    Allow users to specify that type should not be scaled when resizing area type boxes. With this option turned off, text boxes could be resized with the transform panel or the scale tool without their contents being stretched or squashed. (This is what currently already happens when a text area is resized using the mouse.)
    Create an option to apply leading to entire paragraphs. I love being able to enter a new paragraph leading value in InDesign without having to have any characters selected.
    Add vertical alignment options to area text.
    Add support for balancing ragged lines within a paragraph, as in InDesign.
    Add an option to automatically outline all text when saving a file as PDF. This option would be mutually exclusive with the "Preserve Illustrator Editing Capabilities" checkbox.
    Bug fix: font selection by font name keyboard entry. Typing a font name into the font selector in both the control bar and the character palette doesn't always succeed in changing the font of the selected type (tested in Windows XP). This happens sporadically; sometimes the selector will display the new font name but the selected type will remain in the old font. Clicking on the font selector in this situation brings the user to top of the menu, making it necessary to select the desired font by scrolling through the entire list (which does work).
    Other Improvements
    Add a preview mode (similar to InDesign's "W" key) which hides everything outside of the current artboard. This would be useful for previewing trims, especially now that bleeds are supported.
    Create an option to toggle the display of all document raster effects (while leaving them intact). This would be quite convenient when working with large files having high-resolution raster effects on several layers. In such a situation, small changes to artwork can take a long time to render.
    Add support for angle (conical) gradients. I'm guessing that this feature has not yet been implemented either because angle gradients don't interact well with other types of gradients, or perhaps because they can't be transformed into gradient mesh objects due to the "singularity" at the vertex. But couldn't this problem be resolved by being discreet about what's allowed in terms of file saving and conversions to gradient mesh? I would think the folks at Adobe could figure this one out, if it is indeed a mathematical problem.
    Bug fix: antialiasing on shapes that run exactly along pixel boundaries. See diagram for more details.

        Dirty_Deeds, I want to make sure your phone is functioning correctly. I would like to clarify some information you have provided. When you are attempting to reply to anything, are you able to use the keypad to type your reply? Is it just pressing send that presents a problem?
    AndreaS_VZW
    Follow us on Twitter @VZWSupport

  • Frozen cell text color and other formatting inconsistencies

    I am using numbers to maintain course grade books. On each of two gradebooks a single cell has spontaneously changed its text color. Nothing can induce these cells to return to the appropriate color.
    Along the same line, I find that sometimes it is impossible to select a row or column, and to change the cell attributes for all cells at one time. That is, applying a color or formatting feature will affect some cells, but not others. However, those cells can be changed individually.
    Has anyone else encountered such problems?

    Hello
    Use the Inspector to check if there is a "conditional formatting rule" linked to the offending cell(s).
    Yvan KOENIG (from FRANCE vendredi 21 septembre 2007 20:29:59)

  • After latest update razor has lost speech to text ability and other apps

    Motorola M lost speech to text ability after I loaded latest update. I cannot to text to speech to search or text messaging. Very frustrating

        Patti1970,
    We want you to be able to fully enjoy your device still. Just to clarify, the setting you are referring to is it the voice-to-text or the text-to-speech capability? When you go into the Google serach or text messaging application is the Microphone for voice-to-text gone or is it just not working?
    LindseyT_VZW
    Follow us on Twitter @VZWSupport

  • Can't access AIM and other annoyances

    I have clicked the agreement, and, I see this
    AOL Instant Messenger for BlackBerry
    NoteMicrosoft® Windows XP Service Pack 2 (SP2) users: if you encounter an error, look at the top of this page for a yellow bar that reads "This site might require the following ActiveX control: 'AxLoader.cab' from 'Research In Motion'. Click here to install..." Click the yellow bar and choose "Install ActiveX Control..." to allow installation to proceed.
    nothing more. nothing to d/l or info to enter, and when I attempt to sign in, I get directed to the same stupid page. did I just pay a lot of money and get lied to? According to the manual for my 8320, and t-mobile I have IM access to AIM, Yahoo yet, I can't sign in. Yes, I am repeating myself. I am truly frustrated first being told that I had a crippled phone - no sync software for the mac by t-mobile "customer support -even the manual only speaks of WINDOWS.
    And, shouldn't this
    Before downloading AOL® Instant Messenger (AIM) for your BlackBerry® smartphone, check to see that you meet the below requirements:
    Supported smartphones: BlackBerry® 8800 from T-Mobile USA, BlackBerry® 7100i, BlackBerry® 7130e, BlackBerry® 7250, BlackBerry® 7520 and BlackBerry® 8703e from Sprint
    Be updated?
    one currently peeved new customer.

    Not all carriers buy into RIM's Instant Messaging solutions. Until recently you couldn't use either Yahoo Messenger or Windows (Live) Messenger on AT&T. However, after a recent major update of these two clients, they are now available on AT&T.
    So how do you find out which of the (major) IM Clients is available for your device? Simply point your BlackBerry's Browser to:
    http://mobile.blackberry.com
    Click the Instant Messaging for BlackBerry Smartphones link. Scroll to the bottom of the resulting page and click the [Search] button, and your device will be scanned, and OTA Installations will be presented for all the major IM Clients (AIM, Yahoo, Windows Live, Gtalk, ICQ) your device supports.
    There is also a Facebook client available for OTA or IE ActiveX Installation available here:
    http://www.blackberry.com/devicesoftware/entry.do?code=facebook
    which doesn't show up in the list, but does work on AT&T!
    Personally, I try to get ALL my BlackBerry software OTA (Over The Air), and maintain this list just so I always have someplace to find the links for them! Just point your BlackBerry Browser to:
    http://blackberryforums.pinstack.com/blog.php?b=322
    If you use multiple IM Networks, you may want to consider purchasing either Jive Talk or IM+. These are both excelent IM clients, and work on all BlackBerries and all Carriers. There are also a couple of new, free multinetwork IM clients available (EQO, InstaGo, mundu IM, Palringo, WebMessenger), but I have found these to be overburdened with eye candy (the Vista syndrome) or otherwise worth what you pay for them ($0).
    Personally I use IM+, and although it's an excelent product would use Jive Talk except that I purchased it a few months before Jive Talk came out.
    Jerry

  • Mucho strangeness: passwords not propagating to AD, and other annoyances

    Hi all,
    I'm dealing with a few problems in IDM at the moment, and am looking at a small grab-bag of symptoms, which may or may not be linked to each other or to the problem at all.
    The main current problem is that passwords aren't propagating into our Active Directory servers, although they did in the past.
    First a quick summary of our environment, we are running IDM 5.5, we have a central mysql DB which is the source of user infromation, 3 different tables, one for each class of user. Activesync is in use to watch these tables, and we have a custom user form for each table too.
    We are feeding account data into an LDAP server, which is working fine, and to a pair of Active Directory Servers, one for testing/development, and one intended to be for production, except the 'production' server isn't actually in production yet.
    Password information is held in the mysql tables, in 2 different forms, 1) pre-encrypted unix hashes, and pgp-encrypted plaintext, we use the pgp-encrypted plaintext to feed the AD servers, and the unix-hashes for the LDAP.
    Amongst other things the custom forms are calling locally written java code to reverse the pgp-encryption.
    Because the AD boxes weren't in production, we don't know when things broke, or what may have changed to cause the breakage.
    The symptoms I've found are as follows:
    - account creation on AD works, including the initial password,
    - password changes are not going through to the AD servers,
    - changes to other fields in the mysql tables, do propagate (ie, changes to names, email adresses, vacation settings),
    - Our custom user form gets run 3 times, on any change to an account within the mysql tables,
    - The first time the form is run, the waveset.accountId is, sometimes, null, (maybe this is on account creation?)
    - The first time the form is run, activeSync.pgp_pass (our pgp encrypted plaintext password) is always null,
    - on an attempted password change, the task log doesn't show that it is trying to change the password, only that the Acocunt was 'updated',
    - on changing any other field, the task log shows that it was changing that field, although it does show other fields that may have been changed,
    - the catalina.out (we run tomcat), does show that the passwords are being correctly decrypted from the pgp form,
    I'm stuck at this point, can anyone make any suggestions?

    Hi Again,
    This reply is just to let people know what happened with the issues I listed above.
    - The user form being run 3 times, I don't fully understand this one, but I did reduce the amount of work the form did by turning the pgp decryption from a Expansion, to a Derivation field type.
    - the empty attributes, the first time the form is run, does appear to be due to the first appearance of a user account, ie waveset.accountId is empty because it hadn't been generated yet for this user,
    The basic problem of the passwords not puching out was a naming issue, when we first developed the software to decrypt the passwords, we put it in global.pass, and in the schema maps, placed entries like pass->userPasswordAt that point the system worked, then we decided to be more explicit and decided to name the attribute password instead.
    Which meant the schema map was now working with the password. namespace and the password.password attribute, which in turn meant the password distribution failed, because we didn't set password.confirmPassword, or the pasword.selectAll attributes.
    We were lazy, and didn't expect what looked like a attribute name change to be able to change anything, so we didn't notice the passwords stopped propagating.
    As you can see from the above we are still learning how this all works :-(

  • Sequence "could not be found" PP to SG - and other annoyance WRT formats.

    Hello guys
    I am getting really frustrated here, trying to use SG to grade a PP sequence.
    When I send to SG from PP (CC versions) I get a big red splash screen saying SG cannot find the sequence, and it gives the path to the PP project.
    This is a show stopper!
    Then if I try to open the BPAV folder containing the  XDCAM footage so I can grade the clips or at least create a Lumetri preset from SG to apply in PP, it seems SpeedGrade CANNOT OPEN XDCAM FOOTAGE?????
    Seriously guys, you have to be kidding me!
    This is 2013. XDCAM is hardly a new format???
    What is going on there, I see the pathetic list of formats accepted, are you planning on working on this at some point, or should one be looking for viable alternatives.
    Extremely unimpressed.
    Mark.

    You can also do a manual updagrade from the below links:
    Win: http://www.adobe.com/support/downloads/detail.jsp?ftpID=5679
    Mac: http://www.adobe.com/support/downloads/detail.jsp?ftpID=5678

  • Is it possible to define one language for every imported text? And other problems when placing text.

    Problem is, that Indesign cc 2014 does not recognize language correctly. In my case it should always be slovenian (and documents like doc and docx are set to slovenian), but it set it as slovakian. I get many documents from different programs (Word, Libre Office, Open Office ...). And setting every one after placing it into document is time consuming. Word import was working great in InDesign 5.5. Now it just mixes local character formating. Also: importing docx takes too long, and when in document is some picture, it just freeze. So I must first open every doc/docx file and delete every picture/logo that is inside.
    Any suggestions?

    Check the language of your default Character Style. If it's set to Slovakian, change it to Slovenian with no documents open.

  • Email issues (and other annoyances​)

    I recently "upgraded" from my reliable Bold to the Q10.  I must admit I did not do sufficient research first for if I had I would still be using my Bold.
    I know the "delete only on hand held" issue has been raised numerous times so all I will say here is add  me to the list of really annoyed people.
    I completed my first road trip last weekend with the Q1o and it was not a pleasant experience.  Let me first give you the setup details:
    Mobile Service Provider = Virgin Mobile
    Email:
    I have three Rogers accts that go to the Q10
    I have one BellAliant account (nb.aibn.com) that goes to my Q10
    ! Have one  government account that is forwarded to my Q10
    I have on from my own server that goes to the Q10.
    Other complication is that when I am at home there is next to no 3G coverage.  This is not provider dependent - no one has coverage as I live in major dip about 5 km line of sight from both Rogers & Bell / Telus / Virgin towers.
    Now when I am home on my Rogers wireless router, I can't send from my BellAliant account. 
    When I travelled to Toronto I was hit with the following:
    Arrived  at Pearson Airport, switched phone back to normal use. Received several incoming emails.  When I went to answer the BellAliant ones, it would not send.  It took the better part of a day to find an SMTP server that the system would work with.
    My Rogers ones and my own server were fine.
    Fast forward to the next day, when after having to reboot the Q10 (yet again) it decided that all my email accounts were invalid.  So I proceed to authenticate them once again.
    Since I had the Bell Aliant SMTP nonsense sorted out, that work fine.  For my own server it was just a matter of inputting my password and hit save and it worked fine.  Now comes the three Rogers accounts.  When I re-input  my password and it save, I received "Authentication Failed"  and was advised to go to the web login and then try again.  So I went to the web logon on both my laptop and the Q10 and no luck. I kept getting the same the same issue.  It was not resolved until I was back at my home in New Brunswick and on my Rogers supplied home wifi that the accounts would authenticate properly.
     I never had any of these issues when I travelled with my Bold, or the Curve before it.  I could leave NB, travel to Quebec, Ontario, Nova Scotia, PEI travel down through the US eastern seaboard and never an issue sending or receiving emails.
    So I guess the question is how the heck do I work around all this?  BellAliant acknowledge that when you travel outside of NB you might (read will) have to use an alternate SMTP server. Bell, Rogers and Virgin say their systems are OK, it is a BlackBerry issue. (The loss of BIS with OS 10 and my corresponding vmobile.blackberry.com acct)  Again these were never issues until the "upgrade" to the Q10
    My big concern is that when I leave in a few weeks for an out of province work term of a couple of months what do i do if suddenly I lose authentication again and I am no where near which ever provider  decides I am not authenticated?
    Please do not suggest Gmail / Hotmail accounts they are useful, but not the solution to my problem(s).  I have a business to run and customers to respond to in a timely fashion.
    Any constructive comments are more than welcome.
    Thanks for at least letting me rant.

    My settings for my nb.aibn.com accts are:
    Username is my  full email address:  [email protected]
    server address:
    pop.nb.aibn.com
    port 110
    SMTP username is blank
    SMTP server is:
    [email protected]
    SMTP port 25
    I know I had to be one my aibn wireless in order for to set up the first time.  It doesn't like my Rogers wireless at my house.  And of course Rogers doesn't like me using port 25 for the SMTP server.
    When I was in Toronto I had to change to mail.1xbell.ca for my smtp server and of course when I got back to NB back to the nb.aibn.com server.  You would think a national carrier would have one address that would work coast to coast.

  • Does anybody know why i get different dates on my text messages and other apps?

    example sep 23, 2555 at 9:23 pm stamp on my iMessages. When I read email sync with gmail, or even articles it says "2555 " as the year.

        Hi PLEBITA.
    It must be difficult being so far away from  your husband, even more so when there is very little communication! Let's see what's going on. What phone do you have? Does he have a VZW phone and plan? When did you start getting these errors? Has he moved to a different city/ state in Mexico? What dialing pattern are you using? Does he have a Mexico plan that is possibly exceeded for this bill cycle? While in the U.S., (from your phone), please try dialing *228 [send], option 1 to re-program your phone. Also, if possible, please try deleting your thread of messages with him, and then restart your phone. He can try deleting his thread of messages and restarting his phone too.  Also- you can select the following link to make sure you're both using the correct dialing pattern. http://bit.ly/MDSZPK
    I hope this information is helpful.
    Thank you,
    VanessaS_VZW
    Follow us on Twitter @VZWSupport

  • I just statred Flash CC for the first time and it seems that the text within the pop-up window (dialog box) is mis-aligned and not allowing me access to the command buttons, nor all the text. (ie: the NEW Template Box, can't see but 2/3 of the content)

    I just statred Flash CC for the first time and it seems that the text within the pop-up window (dialog box) is mis-aligned and not allowing me access to the command buttons, nor all the text. (ie: the NEW Template Box, can't see but 2/3 of the content) is there a fix to this problem? using 8.1, Monitor is a high res.2560x1440.

    Another View.
    the GUI is so hard to read (so small) I enlarge my Ps UI by the instructions below...which helped a lot.

  • How do I get text to align and look uniform?  This shouldn't be as hard as I am making it!

    Basically, I am trying to get the heading centered and the text aligned left....or at least aligned uniformly here.  Unfortunately, for some reason I am unable to just mess with it in "design" as I usually do.  The design page is blank and I can only make changes on the HTML side, which I know little about.  I have attached the html for this page below.  I know it's a ton to ask, but if someone would be willing to look through it and see what may be wrong or what I need to add, I would appreciate it so much.
    Thanks in advance.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>File Transfer Software, FTP Server, FTP Client and WebDAV Document Collaboration Software</title>
    <meta name="revisit-after" content="15 Days" />
    <meta name="Description" content="WebDrive FTP Client creates a virtual drive to transfer files to WebDAV, SFTP, and FTP servers ? upload and download files without the FTP Client interface. Titan FTP Server used with the WebDrive FTP Client provide secure file transfer. Titan FTP Server supports SFTP and SSL. GroupDrive offers document collaboration.  FTP Software and WebDAV document collaboration that?s simple and secure." />
    <meta name="Keywords" content="FTP Software, DAV Client, WebDAV, FTP Client, FTP Server, Map Drive, map network drive, FTP, WebDAV Client, drive mount, file collaboration, SFTP" />
    <meta name="robots" content="all" />
    <meta name="MSSmartTagsPreventParsing" content="TRUE" />
    <meta name="copyright" content="©1996-2009 South River Technologies, Inc. All Rights Reserved." />
    <meta http-equiv="Expires" content="-1" />
    <meta http-equiv= "pragma" content="no-cache" />
    <link rel="SHORTCUT ICON" href="http://www.southrivertech.com/favicon.ico" />
    <script type="text/javascript">
    var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
    document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
    </script>
    <script type="text/javascript">
    var pageTracker = _gat._getTracker("UA-67873-1");
    pageTracker._initData();
    pageTracker._trackPageview();
    </script>
    <style type="text/css" link>
    @import url('../../_css/default.css');body {
    text-align: left;
    tr #content #box_content #box_content_left table {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 120%;
    text-align: left;
    .left {
    font-size: 110%;
    .outerwrapper .liner .left tbody tr #content #box_content #box_content_left table {
    font-size: 12px;
    font-weight: normal;
    line-height: normal;
    text-align: left;
    white-space: normal;
    vertical-align: bottom;
    float: none;
    </style>
    <!--[if IE 7]><style type="text/css">@import url('../../_css/ie7.css');</style><![endif]-->
    <script type="text/javascript" src="../../_js/global.js"></script>
    <script type="text/javascript">if (window.attachEvent) window.attachEvent("onload", sfHover);</script>
    </head>
    <body>
    <div class="outerwrapper">
    <div class="liner">
      <div class="header"><!-- **************** BEGIN HEADER ********************** -->
       <div class="h_top">
        <h1 class="logo"><a href="/index.html"><img src="../../_images/logo2.gif" width="195" height="52" alt="South River Technologies" /></a></h1>
        <p class="date">
         <script type="text/javascript" language="JavaScript"><!--
         var calendarDate = getCalendarDate();
         document.write(calendarDate);
         //--></script>
        </p>
        <script language="JavaScript">box_nav_followus();</script>
       </div><!-- end h_top -->
      <div class="h_bottom_secondary"><!-- <img src="_images/header_partners_left.jpg" alt="products header 1" /><img src="_images/header_partners_right.gif" alt="products header 2" /> --></div>
      </div><!-- end header -->
        <script language="JavaScript">box_nav_mainmenu();</script>
    <!-- end navbar -->
    <!--
    <div class="skipLinks">
    skip to: <a href="#content">page content</a> | <a href="#globalNav">site navigation</a> | <a href="#siteInfo">footer (site information)</a>
    </div>
    -->
    <table width="760" border="0" align="left" cellpadding="0" cellspacing="0" class="left">
    <tr>
      <td><div id="box_masthead">
        <div id="utility">
    <!--     <a href="/support/index.html">Support</a><br />
         <a href="/company/contact.html">Contact Us</a><br />
         <a href="/sitemap.html">Site Map</a>   -->
        </div>
       </div>
           <!-- globalNav -->
        <script language="javascript">loadnavbar();</script>
        <!-- end globalNav -->
      </td>
    </tr>
    <!--START CONTENT HERE-->
    <tr>
      <td id="content"><div id="box_content">
        <!--CONTENT LEFT-->
    <style type="text/css">
    <!--
    .style1 { color: #FF0000; font-weight: bold; font-style: italic; }
    -->
    </style>
    <div id="box_content_left">
    <!--BreadCrumb-->
    <div id="breadCrumb">
      <br>
      <a href="/index.html">Home</a> >>
      <a href="/partners/index.html">Partners</a> >>
      <a href="/partners/reseller.html">Resellers</a> >>
      <a href="#">Reseller Support Center</a>
    </div>
    <!--End BreadCrumb-->
    <table width="100%"  border="0" cellspacing="10" cellpadding="0">
      <tr></tr>
      <td><h4><span style="font-variant: small-caps"><i><font face="Tahoma" size="6">Channel Partner Support Center</font></i></span></h4></td>
      <tr>
       <table width="100%"  border="0" cellspacing="5" cellpadding="5">
        <tr>
         <td align="right" valign="bottom"> <a href="/partners/reseller-emailorder-v2.htm">
                        Channel Online Order Submission</td>
         <td valign="top"><span class="style1"><font #ff9900> </font></span>Approved Reseller Partners can submit orders online here</a>.</td>
        </tr>
        <tr>
        </tr>
    <!--   <tr><td height="2px" colspan="2" align="left" valign="top" background="/images/bluespacer.gif"></td></tr> -->
        <tr>
        </tr>
        <tr>
         <td align="right" valign="top"><a href="/partners/reseller/artwork.html">
                        Product Logos &amp; Artwork</a> </td>
         <td valign="top">SRT Corporate and Product logos are available for your marketing use.</td>   
         <td height="2px" colspan="2" align="left" valign="top" background="/images/bluespacer.gif"></td>
        </tr>
        <tr>
        <tr><td height="2px" colspan="2" align="left" valign="top" background="/images/bluespacer.gif"></td></tr>
         <td width="25%" align="right" valign="top"><a href="/partners/local/ProLoc.html">Product Localization &amp;  Translation </td>
         <td valign="top"><div align="left"> </a> For information on SRT's Product Localization and Translation Initiative </div>        </td>
                        <tr>
                        <tr>
    <td align="right" valign="top"><a href="/partners/findreseller-sf.html">Partner Enterprise Server Lead Registration</a> </td>
         <td valign="top"></td>     
        </tr>
       </table>
      </tr>
    </table>
    <BR>
    <BR>
    </div>
        <!--CONTENT LEFT-->
        <!--CONTENT RIGHT-->
    <div id="box_content_right">
      <!-- sub navigation -->
      <script language="JavaScript">
       box_nav_subnav_start("Resources");
       box_nav_subnav_add("Channel Technical Support","/partners/reseller/PartnerSupport.html",0);
       box_nav_subnav_add("Part Numbers and Pricing","/partners/PriceCard.pdf",1);
       box_nav_subnav_add("Artwork and Copy","/partners/reseller/artwork.html",0);
       box_nav_subnav_add("GroupDrive Order Form","/partners/reseller/gdorderform.html",1);
       box_nav_subnav_add("WebDrive/Titan Order Form","/partners/reseller/orderform.html",1);
       box_nav_subnav_add("White Papers","/partners/reseller/whitepapers.html",0);
       box_nav_subnav_add("Newsletter Archives","/partners/reseller/newsarchive.html",0);
       box_nav_subnav_add("Contact Us","/partners/reseller/contactus.html",0);
       box_nav_subnav_end();
      </script>
      <!-- sub navigation -->
         <script language="JavaScript">
          box_nav_news_start("Reseller News");
          box_nav_news_add("SRT Signs 100th Reseller","/press/pr040921.pdf",1);
          box_nav_news_end();
         </script>
      <!-- SRT Logo -->
      <script language="JavaScript">box_nav_srtlogo();</script>
      <!-- SRT Logo -->
    <BR>
    <br>
    </div>
        <!--CONTENT RIGHT-->
       </div>
           <!--end box_content-->
      </td>
    </tr>
    <tr>
      <td><img src="/images/box_bottom760.gif" id="box_bottom760" alt="" /></td>
    </tr>
    <tr>
      <td><script language="javascript" type="text/javascript">writefooter();</script></td>
    </tr>
    </table>
    </body>
    </html>

    OK - sorry that my comment didn't advance the thread.
    The single largest determinant of a goofy layout is the use of invalid code.  The first place to start debugging a layout is the W3 validator.  Check the code that you posted earlier at this site -
    http://validator.w3.org
    When I do that, I get 47 errors and 1 warning. In addition to the many syntax errors (this page has a STRICT XHTML doctype!) of XHTML, which probably have no effect on layout, there are others that probably have a significant effect:
    Line 24, Column 28: "link" is not a member of a group specified for any attribute
    <style type="text/css" link>
    Line 92, Column 23: document type does not allow element "style" here
    <style type="text/css">
    Line 108, Column 11: end tag for "tr" which is not finished
      <tr></tr>
    Line 109, Column 6: document type does not allow element "td" here; assuming missing "tr" start-tag
      <td><h4><span style="font-variant: small-caps"><i><font face="Tahoma" size="6…
    Line 110, Column 6: document type does not allow element "tr" here
      <tr>
    Line 111, Column 67: document type does not allow element "table" here; missing one of "th", "td" start-tag
       <table width="100%"  border="0" cellspacing="5" cellpadding="5">
    Line 119, Column 9: end tag for "tr" which is not finished
        </tr>
    (many repetitions of this kind of error)
    Line 191, Column 7: end tag for "div" omitted, but OMITTAG NO was specified
    </body>
    (two of these)
    It makes no sense trying to troubleshoot layout problems with this many instances of broken code.  That was really what Nancy's post was getting at.
    Fix that code first and then we can work on the layout.

  • Sync Text alignment in HTMLEditor and a PDF generated using FOP

    Hi,
    How to sync text alignment in HTMLEditor and a PDF generated using FOP ?
    I tried setting the dimensions of HTMLEditor and PDF in pixels by calculating the size in Pixels for A4 paper size with a particular dpi value.
    Have done the font settings as well. The problem is I see uneven line cuts in the PDF as compared to HTMLEditor.
    Thanks.

    It's not a realistic expectation. You are expecting the PDF produced by whoever provided your FOP implementation to observe exactly the same typographical rules as HTMLEditor. Basically it won't, and there is no way to enforce it. Line breaking/hyphenation/word spacing algorithms can be of great complexity. You are expecting two systems that aren't specified to agree, to agree.

Maybe you are looking for

  • I am having trouble with the position of my header image across browsers. white space above it in safari, pc, and crome then all to the right in firefox.

    nydogworks.net <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>NYDogWorks Long Island Dog Training and Behavior</title> <meta name="description" content="Serving all of L

  • Crystal Report Layout

    Hi Expert. I created a report layout in crystal report that I will be attaching in an add-on program which is a document type for report viewing via PLD.  However, as i was setting up my layout in the report layout manager, I cannot point my layout i

  • Problem in setting focus in JTable

    Hi, In my application I am using JTable with a customized table model. The table has two columns. First column has jcombobox as its editor and the second column has the customized editor developed by me. This particular table appears in a wizard. Whe

  • When stiching two separate scans together, I can't bucket fill (use PS6.0)

    The platen or glass on my scanner isn't large enough to accomodate my 11inchX14inch map sketch I am attaching. So I scan in as much of it as possible, then crop i t accordingly and keep it set as PDF. I then turn over the original and scan the sam e

  • Need help with columnChart

    Hello. I am noob when it comes to Flex and mxml, but I have alot of experience in flash and also PHP. Currently, the data that populates my columnChart is coming from a function: public var expenses:ArrayCollection = new ArrayCollection([ {Month:"Jan