List bullets and IE 11 not right

Hi,
I do not understand what is going on with my unordered list in IE 11. The bullets are on the wrong side of the image. They display correctly in FF and Chrome. But IE is giving me a fit. Here is the structure:
<p><img src="/portals/0/Images/patient_home.png" alt="New Patient Center" title="New Patient Center" style="float: left; margin-right: 25px; margin-bottom: 10px;" />Welcome to the The Spinal Center Clinics new patient center!</p>
<p>Arriving at a doctor's office for the first time can be nerve racking from filling out paperwork, learning new faces and names, and getting to know your way around the office.</p>
<p>The chiropractors here at The Spinal Center Clinics want to make your first visit as easy as possible. In this area of the website, you will be able to:</p>
<ul>
    <li>See what to expect upon your initial visit</li>
    <li>Fill out necessary paperwork</li>
    <li>Understand the phases of treatment</li>
</ul>
<p>Please feel free to look through the content located within the New Patient Center and call with any questions!</p>
<br style="clear: both;" />
Thanks for any suggestions!

Never mind. I found the answer. Works like a charm.
ul {
  list-style-position: inside;

Similar Messages

  • HT1368 why is the "buy all" no longer visible on my wish list? and it is not letting me delete items.?

    why is the "buy all" no longer visible on my wish list? and it is not letting me delete items.?

    The 'buy all' has, for some reason, been removed from the current version of iTunes - you can try leaving feedback for Apple and maybe it'll be added back in a future update :http://www.apple.com/feedback/itunesapp.html . Until then you can only buy items individually.
    In terms of the 'x' for deleting items from it, other people have posted about that and it's affecting me as well. I assume that there is a bug with the current version of iTunes and/or a problem at Apple's end which they need to fix.

  • Firefox 5.0 stalls while watching videos (at least) and the only way to get it back working is to close it and restart it, and this is not right !

    I have been using Firefox 5.0 for the past few days. I have been experiencing the following error : I watch videos and suddenly, the video stops. From that point, it becomes impossible to open new tabs, especially, I tried to use the search box (with Google or Yahoo) on the top right of the page and got no result.
    However, if I close the browser and restart it, Firefox works again, until it drops again. I therefore have to close it and open it again every 5 minutes to read a video (the problem also appears when not using the video). The only thing that might cause this that is not Firefox could be my latest upgrade from Xmarks, however I disabled the thing and still got the issue.
    I would like to uninstall Firefox 5.0 from now and put Firefox 4 at least until the browser is more stable, but how do I do that ?

    Hey ppgg,
    Thanks for the question. I understand you are experiencing issues with Wi-Fi connectivity on your MacBook. The following resources may provide a solution.
    First, go ahead and utilize Wireless Diagnostics to analyze the issue:
    About Wireless Diagnostics
    http://support.apple.com/kb/HT5606
    Next, see the section titled “Symptom: The network connection drops unexpectedly” in the following article:
    Wi-Fi: How to troubleshoot Wi-Fi connectivity
    http://support.apple.com/kb/HT4628
    Thanks,
    Matt M.

  • Unordered list bullets and Spry Accordion widget

    In all browsers except IE (surprise, surprise!), the page
    works fine. Otherwise the bullets in my unordered list appear at
    the bottom of the multiline text they are associated with. I
    haven't had this problem in similar pages not using the accordion
    widget.
    Please have a look:
    http://www.yale.edu/faith/rc-fwl.htm
    vs.
    http://www.yale.edu/faith/rc-esw.htm
    Thanks,
    Gary

    <div class="AccordionPanelContent">Castaway the: Restaurant<br />
                  1250 Harvard Rd.<br />
                  Burbank, CA 91501<br />
                  - www.castawayrestaurant.com - (818) 848-6691</p>
    Oops!
    Missing the opening <p>
    I didn't find it, the validator did.
    Martin

  • CS4 - Erase Pencil and Brush Size not right

    Boy...to explain this...
    I can have either PENCIL or BRUSH picked for ERASE. The nice circle appears as it did in CS3. It has a radius of x-units. I am on my layer...I click expecting everything inside the circumference to erase...well what is erased is x-units MINUS a few units. No matter what size BRUSH or PENCIL I use it doesn't erase out to the circumference...makes it impossible to do fine erasing like I could with CS3/2/CS. OPACITY is set to 100%. HARDNESS is 100%. I see no other adjustments. HELP!
    Thanks, --bill

    Bill, I meant Normal (old way, shows the greyest areas, almost to 50% opacityof the brush)
    And Full Size (newer way, shows total area affected by the brush, even areas less covered)
    You are not painting with a graphic tablet, right? You would have mentionned it, of course...

  • How do i transfer a rental movie... it shows under my library.. but that is the only place and I can not right click to add or drag and place in my device

    i rented a movie... it shows as renteal under my library category... but that is the only place... how do i transfer it to my ipod classic?... it does not show under movies when i click that tab after clicking my device icon

    Are you sure you don't have a 5G iPod Video?  5G Videos do not support rented films.  Use this article to help you determine what generation and model your iPod is.
    http://support.apple.com/kb/ht1353
    B-rock

  • Get the value from dropdown list (selectedIndex) and text field -- not working

    Hi All,
    I am trying to find and change by the values selected by user using dropdown and text field. Here is the code.
    ChangeRevDetails();
    function ChangeRevDetails(){
              var myDialog = app.dialogs.add({name:"Enter copyright information"});
    //    var monthlist = col1.dropdowns.add('myList', undefined, myList);
              var col1 = myDialog.dialogColumns.add();
              var col2 = myDialog.dialogColumns.add();
        col1.staticTexts.add({staticLabel:"Month:"});
              col1.staticTexts.add({staticLabel:"Year:"});
        col1.staticTexts.add({staticLabel:"Rev. no.:"});
        var myList = [ "January", "February",  "March", "April", "March", "April", "May", "June", "July", "August", "Sepetember", "October", "November", "December" ];
         var myMonth = col2.dropdowns.add({stringList:myList, selectedIndex:0, minWidth:100});//{minWidth:100});
         var myYear = col2.textEditboxes.add({editContents:"2013", minWidth:100});  
         var MyRev = col2.textEditboxes.add({minWidth:100});
        var RevMonth = (myList [myMonth.selectedIndex]);
        var RevYear = myYear.editContents;
        var RevNumber = MyRev.editContents;
        var RevToReplace1 = RevMonth +", "+ RevYear;
        var RevToReplace2 = RevMonth +", "+ RevYear + " Rev. " + RevNumber;
        var myResult = myDialog.show();
            if(myYear.editContents == "") //entry is ""
            alert("Please enter some text into the contents field.");
            ChangeRevDetails();
            else if(myResult == true) //user entered datas
                alert (RevMonth);
                alert (RevYear);
                alert (RevNumber);
                alert (RevToReplace1);
                alert (RevToReplace2);
                app.findGrepPreferences = NothingEnum.nothing;
                app.changeGrepPreferences = NothingEnum.nothing;
                // grep find/change
                app.findGrepPreferences = app.changeGrepPreferences = null;      
                app.findGrepPreferences.findWhat = "[\\l\\u]+?\\s?\\d{4},?\\s+[\\l\\u]+\\.*\\s+\\d+";
                app.findGrepPreferences.appliedParagraphStyle = app.activeDocument.paragraphStyleGroups.item("Back page"). paragraphStyles.item("Legal_7/9");
                app.changeGrepPreferences.changeTo = RevToReplace1;
                app.changeGrepPreferences.appliedParagraphStyle = app.activeDocument.paragraphStyleGroups.item("Back page"). paragraphStyles.item("Legal_7/9");
                app.activeDocument.changeGrep();
                app.findGrepPreferences = NothingEnum.nothing;
                app.changeGrepPreferences = NothingEnum.nothing;
        else //implies user clicked cancel
        myDialog.destroy();
    The problem is, it is not taking the value which the user selects from the dropdown and the text field. It takes the default value as "January" and the year is "2013" as both of these values are given as selectedIndex:0 and editContents:"2013". I have compared the coding with some other working scripts as well, but it is not working. I have added several alert boxes to check the value we get.
    Also, the find and change is also not working. Please help me on this. Thanks.
    Regards,
    Muthuraj. D

    Change the order for dialogresults:
    var myYear = col2.textEditboxes.add({editContents:"2013", minWidth:100});  
    var MyRev = col2.textEditboxes.add({minWidth:100});
    var myResult = myDialog.show();
    if(myYear.editContents == "") //entry is ""
    alert("Please enter some text into the contents field.");
    ChangeRevDetails();
    else if(myResult == true) //user entered datas
    var RevMonth = (myList [myMonth.selectedIndex]);
    var RevYear = myYear.editContents;
    var RevNumber = MyRev.editContents;
    var RevToReplace1 = RevMonth +", "+ RevYear;
    var RevToReplace2 = RevMonth +", "+ RevYear + " Rev. " + RevNumber;
    didn't have a look for the find change problem

  • Any ideas on why my Apple TV no longer "sees" my photo albums? It lists events and photos but not albums like it did earlier.

    Using my MacBook Pro and iPhoto and Apple TV I have always been able to navigate on the TV to Photos and then to either Events, or Photos, or Albums. I always choose albums for my "shows" but after updating Apple TV I no longer see Albums as a choice which prevents me from getting to them with the Apple TV remote. Any ideas for correcting this?

    I'm answering my own question. Here's what I've discovered since the original post: 1. Turn on tv and Apple TV -  2. open iTunes on computer  - 3. under the Advanced menu of iTunes Turn On Home Sharing and click on Choose Photos to Share - 4. check Share Photos From (iPhoto), click Selected albums, Events, Faces and in the Albums column check the one you want - 5. Now, when you go to the Apple TV remote and select Photos, you will see the album you previously selected.

  • [SOLVED] TTY font and screen size not right after switch GUI- cons

    I have a small problem that I need some help with.  I lost my ttys when in r/l 5.  So, I appended my krnl boot line w/ vga=773.  That gave me fb in tty.  But I saw that the top of the screen was about 30% down from the top of the actual screen.  To fix that, I (disabled kms) put radeon.modeset=0 on the krnl boot line.  Now, when go from the GUI back to the terminal, the line spacing is doubled and the bottom of the screen is invisible.
    hardware in question:
    IBM thinkpad T41 laptop
    Radeon video (1024x768)
    Pentium M 1.6GHz
    512MB RAM
    software in question:
    krnl 2.6.33-ARCH (standard krnl)
    GDM & XFCE4
    I don't know what else to provide, so please let me know.
    Any suggestions?
    Thanks in advance.
    Use of the standard font for consol. will prevent this problem.
    Last edited by mhauss (2010-04-30 17:44:27)

    See if messing with the font DPI helps.
    https://wiki.archlinux.org/index.php/Fo … rted_fonts

  • My Iphoto 9.5.1 will not open . I can not right to the libarya

    I can not open my Iphoto any more , and i can not right to the library. Can you tell me how to do .
    Best regard Lone Nielsen

    See:  Do not install MacKeeper    https://discussions.apple.com/docs/DOC-3036
    Jeg har været inde i info og rettet tilladelsen til at læse og skrive .
    iPhoto 6 og nyere: Genopbygning af iPhoto-biblioteket
    Sådan genopbygges iPhoto-biblioteket:
    **** iPhoto (Quit iPhoto), hvis det er åbent.
    Hold Kommando- og Alternativ-tasten på tastaturet nede.
    Åbn iPhoto.
    Bliv ved med at holde tasterne nede, indtil du bliver spurgt, om du vil genopbygge biblioteket.
    Der vises en dialog med genopbygningsindstillinger. Vælg de indstillinger, du vil bruge - Kontroller og repararer arkivtilladser til iPhoto-biblioteket
    Klik på Genopbyg for at starte genopbygningsprocessen. Det tager muligvis nogle minutter at fuldføre denne handling.

  • My bulleted list displays correctly in IE 8 and Firefox, but not in IE 7

    I have a simple bulleted list in a right floated sidebar for a website. If views fine in IE 8 and Firefox, but not in IE 7 (and perhaps earlier, though I only have access to machines with IE 7 and 8.
    Because the default indent for the bulleted list moves it too far to the right, I set a negative margin for that area of text in order to move it to the left a little. While it looks great in IE 8 and Firefox, it appears this margin setting is causing the bulleted list to shift too far to the left in at least IE 7. The rest of the copy in the sidebar div lookes fine including the title and paragraph copy.
    Can anyone suggest a fix?
    Also, I noticed the spacing above the main content div is smaller in IE 7 than with the IE 8 and Firefox. This div has a h1 heading followed by paragraphs. (This site was developed using a pre-existing CSS style sheet from Dreamweaver by the way.)

    Strangely when I replied via e-mail my message got garbled when I looked at it here.
    I was able to move over the bullet items to the left using your suggestion, however it now shows this line of copy above the page at the top of the window in the IE browser (both IE 7 and IE 8):
    <!--[if lte 7]>
    I'm including the code where you had indicated I should place it - in the <head> section after the link to the main stylesheet. I included it just after the other conditional comments. Perhaps I've included it in the wrong place - hence the line appearing above the pages (just above the banner)?
    I did not change any other parameter. (This is a template page as all pages in the site are based on it.) The list feature does appear on a number of pages.
    Also I should note the bullets have mysteriously disappeared and it's actually an unbulleted list in IE 7, which I could live with if I have to.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Home Page</title>
    <!-- TemplateEndEditable -->
    <link href="../css/twoColFixRtHdr.css" rel="stylesheet" type="text/css" /><!--[if IE 5]>
    <style type="text/css">
    /* place css box model fixes for all versions of IE in this conditional comment */
    .twoColFixRtHdr #sidebar1 { width: 190px; }
    </style>
    <![endif]--><!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .twoColFixRtHdr #sidebar1 { padding-top: 10px; }
    .twoColFixRtHdr #mainContent { zoom: 1; }
    /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    <![endif]-->
    <!--[if lte 7]>
    <style>
    .twoColFixRtHdr #container #sidebar1 ul {
    margin-left: 25px
    </style>
    <! [endif]-->
    <style type="text/css">
    <!--

  • I read the article on how to remove Bing; however, it does not show up on my list of installed programs and it does not show up in the list of extenstions under "Tools" and "Addon" yet it is installed as an extention to the right of the addlress line.

    I read the article on how to remove Bing; however, it does not show up on my list of installed programs and it does not show up in the list of extenstions under "Tools" and "Addon" yet it is installed as an extention to the right of the addlress line. It is not my home page. Help!!!

    See also:
    *https://support.mozilla.com/kb/Removing+the+Search+Helper+Extension+and+Bing+Bar
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    *http://kb.mozillazine.org/Resetting_preferences

  • Bullets and list numbers do not render correctly in FF3

    althought bullets and list numbers in my project look fine in
    IE6 & 7, in FF2 & 3 they show at the left margin - any
    ideas about what's happening here or is it another "no work with
    FireFox" item ?

    See if the Browsers article on my site helps.

  • I want to transfer a movie I have downloaded from itunes to my new IPAD. I have been on the itunes help menu, it tells me to look under 'devices' tab for IPAD. BUT there is no 'devices' tab and it does not list my new IPAD. Help!

    I want to transfer a movie I have bought in itunes to my new IPAD. I have been trying to work how to do this for 3 days now. I have accessed all the itunes help and forums and wiki online. They all tell me to go to the DEVICES tab on itunes and select IPAD then sync. YUP seem simple, BUT there is not DEVICES tab listed on my itunes and it does not list IPAD. Years ago I set up my IPOD no problem and that is listed, but not the new IPAD. Can anyone help? I would love to be able to actually watch films on my IPAD!! thanks

    If you have iTunes 11 on your computer then you can enable the left-hand sidebar on it via option-command-S on a Mac, control-S on a PC - when connected (and if your computer's iTunes is up-to-date) your iPad should then appear on that sidebar under a 'Devices' heading :
    If you select the iPad on that sidebar you can then use the Movies tab on the right-hand side of the iTunes screen to select and sync that film to your iPad's Videos app.
    Has your iPad been synced to the computer before ? If not then you might find this page for syncing to a new computer useful : https://discussions.apple.com/docs/DOC-3141

  • Plug-in for bullets and numbered lists in Mail??

    Does anyone know of any plug-ins for the Mail app to do bullets and numbered lists like Entourage??
    The lack of this functionality really makes Mail kinda lame and unusable for me.
    Thanks!

    Paul,
    the fact that Mail does not support bullit lists is not an oversight but was done on purpose. It may look good on your computer when you compose the message, but you have little influence in the way recipients see that message. It can get very messy, I can assure you.
    If you want a perfect layout, compose in a wordprocessor and save as PDF, send that as an attachment.

Maybe you are looking for

  • Microsoft Office Update Log -- Really quick question!

    Hey, I have an log file entitled, "MAU 1.1.2 Update Log" in my root hard drive folder. Probably a dumb question, but can I delete that log safely, it just looks stupid sitting there not serving really any purpose right? Like it's only 16 KB but still

  • WiFi is an OS 3.2 problem?

    I have done various WiFi connectivity tests with my iPad on no less tan twenty differen WiFi hot spots around the Orlando area. At fourteen of those spots my Ipad preformed flawlessly. When tested the signal strength was constant and extremely strong

  • Regarding "EXIITS".

    Hi To All! I don't know about User exits. Can you please help tell me about User Exits and how can I learn User Exits fast! 1. how to find the transaction code for the particular user exits in smod. 2. how to view the menu exits,Screen exits,field ex

  • Error when opening EPMA in shared services

    Hi,   When I'm opening the EPMA shared services in the following error occurs: Error: Unable to connect to "EPM Architect", make sure the application is running and the user has the appropriate rights to access this recursion Could you help me? Thank

  • Item code construction for Textile/Fabric industries

    Hi all can anyone help me to construct the item master (Production is also involve and batch is associated with each in and out transaction.) Current scenario a.     One item code associated with one series. b.     One or more design associated with