Border-Radius Not Working in IE11 - any SharePoint Constraints?

Hi all,
I can't get Border-Radius to render rounded corners on my Divs. Is this an IE 11 or SharePoint constraint I am facing? I am not in compatibility mode.
Thanks,
Kelly
Personal Blog: http://thebitsthatbyte.com

Kelly,
Try opening up Dev Tools (F12) and setting the browser mode to edge. Does this have any effect on the rendering of your CSS? If it does - you have an X-UA-Compatible tag in your master page and the value is set to IE8.
It's not recommended you remove this because it breaks some functionality on the authoring side. What you could do is replace that line with this:
<Sharepoint:SPSecurityTrimmedControl
runat="server"
Permissions="AddAndCustomizePages"><meta
http-equiv="X-UA-Compatible"
content="IE=8"/></SharePoint:SPSecurityTrimmedControl>
And it will show at the appropriate times I believe. You can read more about the control here:
http://www.markadrake.com/blog/2013/11/21/public-sharepoint-sites-and-ie8-compatibility/
If this doesn't work please let me know.

Similar Messages

  • Skinning- Border Radius not working in IE8 / IE7

    Hi,
    Jdev Version: 11.1.1.5.
    I have styled my command button with the border-radius. The curved edges are not showing up in Internet Explorer 7 / 8.
    IE9, firefox and chrome rendering them properly.
    my CSS code..
    af|commandButton.testButton
        background-color: Black;
        color: White;   
        width: 85px;
        height: 30px;
        font-family: Calibri;
        font-size: larger;
        border-radius: 10px;
        behavior: url(PIE.htc);   
    I got line num# 10 from http://css3pie.com/about/
    But no luck. Can anyone help me ??
    Thanks,
    Saif.

    Question: have you installed PIE on the IE?
    Or have you just copied the line 10?
    You have to install the PIE extension and hope that it work, see Getting Started &amp;#8211; CSS3 PIE: CSS3 decorations for IE
    Timo.

  • Border radius not working in my web using firefox 18.0.2 using -moz or without

    I'm using the code below for the menu of my web and it works perfect in Safari 5 and in my html editor Coda but the rounded corners are missing in Firefox 18.0.2 on my iMac, did tried several changes without success ¿can you help me please? The code:
    <pre><nowiki><!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">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Apple Menu In CSS3 Only</title>
    <style type="text/css">
    body {
    background: #ddd;
    margin: 30px;
    #menu {
    float: left;
    padding: 0;
    margin: 0;
    /* Box Shadow */
    box-shadow: 0 1px 0 #000;
    -moz-box-shadow: 0 1px 0 #000;
    -webkit-box-shadow: 0 1px 0 #000;
    /* Rounded Corners */
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-bottomleft: 10px;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    /* Rounded Corners */
    -moz-border-radius-topright: 10px;
    -moz-border-radius-bottomright: 10px;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    #menu ul {
    border-top: #f3f3f3 1px solid;
    padding: 0;
    margin: 0;
    float: left;
    /* Background Gradient */
    background-image: -moz-linear-gradient(top, #b4b4b4, #707070);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#b4b4b4), to(#707070));
    #menu li {
    float: left;
    list-style: none;
    background: none;
    margin-right: 1px;
    #menu a { outline: none; }
    #menu li a:link, #menu li a:visited {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;
    display: block;
    color: #262626;
    padding: 12px 28px;
    text-decoration: none;
    text-transform: capitalize;
    /* CSS3 Text Shadow */
    text-shadow: 0px 1px 1px #fff;
    /* CSS3 Background Gradient */
    background-image: -moz-linear-gradient(top, #cacaca, #848484);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#cacaca), to(#848484));
    #menu li a:hover {
    cursor: pointer;
    color: #fff;
    text-shadow: 0px -1px 1px #000;
    /* Background Gradient */
    background-image: -moz-linear-gradient(top, #929292, #545454);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#929292), to(#545454));
    #menu li:first-child a, #menu ul {
    /* Rounded Corners */
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-bottomleft: 10px;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    #menu li:last-child a, #menu ul {
    /* Rounded Corners */
    -moz-border-radius-topright: 10px;
    -moz-border-radius-bottomright: 10px;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    a.active:link, a.active:active, a.active:visited {
    color: #fff !important;
    text-shadow: 0px -1px 1px #000!important;
    background-image: -moz-linear-gradient(top, #444, #666)!important;
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#444), to(#666))!important;
    /* Box Shadow */
    box-shadow: inset 0 0 10px #000;
    -moz-box-shadow: inset 0 0 10px #000;
    -webkit-box-shadow: inset 0 0 10px #000;
    </style>
    </head>
    <body>
    <div id="menu">
    <ul>
    <li><a class="active" href="index.html">home</a></li>
    <li><a href="menu.html">menu</a></li>
    <li><a href="project.html">projects</a></li>
    <li><a href="affiliates.html">affiliates</a></li>
    <li><a href="contact.html">contact</a></li>
    </ul>
    </div>
    </body>
    </html></nowiki></pre>

    The code:
    <!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">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Apple Menu In CSS3 Only</title>
    <style type="text/css">
    body {
    background: #ddd;
    margin: 30px;
    #menu {
    float: left;
    padding: 0;
    margin: 0;
    /* Box Shadow */
    box-shadow: 0 1px 0 #000;
    -moz-box-shadow: 0 1px 0 #000;
    -webkit-box-shadow: 0 1px 0 #000;
    /* Rounded Corners */
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-bottomleft: 10px;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    /* Rounded Corners */
    -moz-border-radius-topright: 10px;
    -moz-border-radius-bottomright: 10px;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    #menu ul {
    border-top: #f3f3f3 1px solid;
    padding: 0;
    margin: 0;
    float: left;
    /* Background Gradient */
    background-image: -moz-linear-gradient(top, #b4b4b4, #707070);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#b4b4b4), to(#707070));
    #menu li {
    float: left;
    list-style: none;
    background: none;
    margin-right: 1px;
    #menu a { outline: none; }
    #menu li a:link, #menu li a:visited {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;
    display: block;
    color: #262626;
    padding: 12px 28px;
    text-decoration: none;
    text-transform: capitalize;
    /* CSS3 Text Shadow */
    text-shadow: 0px 1px 1px #fff;
    /* CSS3 Background Gradient */
    background-image: -moz-linear-gradient(top, #cacaca, #848484);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#cacaca), to(#848484));
    #menu li a:hover {
    cursor: pointer;
    color: #fff;
    text-shadow: 0px -1px 1px #000;
    /* Background Gradient */
    background-image: -moz-linear-gradient(top, #929292, #545454);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#929292), to(#545454));
    #menu li:first-child a, #menu ul {
    /* Rounded Corners */
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-bottomleft: 10px;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    #menu li:last-child a, #menu ul {
    /* Rounded Corners */
    -moz-border-radius-topright: 10px;
    -moz-border-radius-bottomright: 10px;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    a.active:link, a.active:active, a.active:visited {
    color: #fff !important;
    text-shadow: 0px -1px 1px #000!important;
    background-image: -moz-linear-gradient(top, #444, #666)!important;
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#444), to(#666))!important;
    /* Box Shadow */
    box-shadow: inset 0 0 10px #000;
    -moz-box-shadow: inset 0 0 10px #000;
    -webkit-box-shadow: inset 0 0 10px #000;
    </style>
    </head>
    <body>
    <div id="menu">
    <ul>
    <li><a class="active" href="index.html">home</a></li>
    <li><a href="menu.html">menu</a></li>
    <li><a href="project.html">projects</a></li>
    <li><a href="affiliates.html">affiliates</a></li>
    <li><a href="contact.html">contact</a></li>
    </ul>
    </div>
    </body>
    </html>

  • People picker is not working for ie11 but working fine for other lower version

    i am using sharepoint 2010 and windows authentication
    recently i have updated my ie to ie11 and problem goes here.
    when i try to select from people picker, there are an unexpected error happened 
    however when i use other ie version, people picker work fine, what goes wrong?
    i have already added my system as trusted site
    if there any others thing i miss out?

    Hi,
    According to your post, my understanding is that People picker is not working for ie11 but working fine for other lower version.
    IE 11 is known to have compatibility issues on SharePoint 2010, please make sure to:
    first of all, try installing latest update for IE 11 (several compatibility issues were fixed since the first release)
    add the site to compatibility view (in IE> Tools> Compatibility view settings> type site name> add)
    add the site to trusted sites and set the zone security level to low (in IE> Internet Options> Security> trusted sites> sites>add your site there> ok> custom level> select low> reset> ok)
    You can use developer tools (f12) and set browser mode to the version that is most compatible with your environment.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Hide mouse cursor when typing is not working in IE11 Windows7

    Hide mouse cursor when typing is not working in IE11 Windows7 - I saw a post that devs were looking at this in 2011? Slow progress huh?
    This is really annoying when you have to move the cursor to see what you are typing...

    Hi,
    Please first make sure that Mouse Properties\Pointer options\Hide pointer while typing is ticked.
    If this option is already ticked, then try following steps to troubleshoot:
    Update the driver for the mouse to get the best performance.
    Choose a different cursor as Rob said for a test.
    If this issue occurred recently, check if you have any newly installed programs or IE add-ons which cause this issue, you can test this in no add-ons mode, click start button, type "internet" in the search box, choose "internet explorer (No add-on)".
    * I test in My IE, I have Hide pointer while typing checked, and in some typing boxes in IE the cursor will hide automatically, while some are not, but I think it's not an annoying issue for me.*
    Regard
    Yolanda
    TechNet Community Support

  • Help needed I updated my ipad2 with iOS5 but few of my dashbaords are not working now can any one let me know how to downgrade the OS

    Help needed I updated my ipad2 with iOS5 but few of my dashbaords (HTML5) are not working now ,can any one let me know how to downgrade the OS as we have a meeting coming up .. its urgent

    Downgrading the iOS is not supported. If you are using Safari this try clearing its cache via Settings > Safari.
    If that doesn't work then try closing Safari completely and then re-open it : from the home screen (i.e. not with Safari 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Safari app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    A third option is a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Multilingual URL is not working in IE11

    Multilingual URL is not working in IE11 same URL is working with other browser. Would like to know whether Arabic URL is supported in IE11? 

    Hello,
    See this http://windows.microsoft.com/en-gb/windows-vista/change-your-internet-explorer-language-settings and follow the steps given
    there. After that let us know whether it is working now or still not.
    "Solution is to enable Send
    IDN server names for non-Intranet URLs under
    advanced settings. " This is also a solution.
    Thanks Prakash
    Varghese!
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • After Mountain Lion download, FaceTime is not working anymore. Any ideas?

    After Mountain Lion download, FaceTime is not working anymore. Any ideas?

    I have reinstalled mountain Lion again . This time, Facetime works when somebody calls me, and I can do calls from my Mac again. But the problem was still that I was not able to call my iPad, what I was able to do with Lion (I had one Apple-ID and two call adresses). The solution was this time to generate a second Apple-ID from the Facetime in my Mac (this doesn't affect your main Apple-ID, it's only used for Facetime). Now, it works!  ;-)

  • Ipad displays "ipad is disabled connect to itunes", I have tried putting the ipad into recovery mode and then restoring but that does not work. I have also tried doing a hard reset of the ipad and that does not work either. Any ideas?

    Ipad displays “ipad is disabled connect to itunes”, I have tried putting the ipad into recovery mode and then restoring but that does not work. I have also tried doing a hard reset of the ipad and that does not work either. Any ideas?
    My son let one of his friends use his ipad. The next time he tired to use it he could not get it unlocked, I tired to unlock it but it kept telling me that I had the wrong pass code. With out me knowing my son continued to tire until it completely disabled it self.

    How can I unlock my iPad if I forgot the passcode?
    http://www.everymac.com/systems/apple/ipad/ipad-troubleshooting-repair-faq/ipad- how-to-unlock-open-forgot-code-passcode-password-login.html
    iOS: Device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    How can I unlock my iPad if I forgot the passcode?
    http://tinyurl.com/7ndy8tb
    How to Reset a Forgotten Password for an iOS Device
    http://www.wikihow.com/Reset-a-Forgotten-Password-for-an-iOS-Device
    Using iPhone/iPad Recovery Mode
    http://ipod.about.com/od/iphonetroubleshooting/a/Iphone-Recovery-Mode.htm
    You may have to do this several times.
    Saw this solution on another post about an iPad in a school environment. Might work on your iPad so you won't lose everything.
    ~~~~~~~~~~~~~
    ‘iPad is disabled’ fix without resetting using iTunes
    Today I met my match with an iPad that had a passcode entered too many times, resulting in it displaying the message ‘iPad is disabled – Connect to iTunes’. This was a student iPad and since they use Notability for most of their work there was a chance that her files were not all backed up to the cloud. I really wanted to just re-activate the iPad instead of totally resetting it back to our default image.
    I reached out to my PLN on Twitter and had some help from a few people through retweets and a couple of clarification tweets. I love that so many are willing to help out so quickly. Through this I also learned that I look like Lt. Riker from Star Trek (thanks @FillineMachine).
    Through some trial and error (and a little sheer luck), I was able to reactivate the iPad without loosing any data. Note, this will only work on the computer it last synced with. Here’s how:
    1. Configurator is useless in reactivating a locked iPad. You will only be able to completely reformat the iPad using Configurator. If that’s ok with you, go for it – otherwise don’t waste your time trying to figure it out.
    2. Open iTunes with the iPad disconnected.
    3. Connect the iPad to the computer and wait for it to show up in the devices section in iTunes.
    4. Click on the iPad name when it appears and you will be given the option to restore a backup or setup as a new iPad (since it is locked).
    5. Click ‘Setup as new iPad’ and then click restore.
    6. The iPad will start backing up before it does the full restore and sync. CANCEL THE BACKUP IMMEDIATELY. You do this by clicking the small x in the status window in iTunes.
    7. When the backup cancels, it immediately starts syncing – cancel this as well using the same small x in the iTunes status window.
    8. The first stage in the restore process unlocks the iPad, you are basically just canceling out the restore process as soon as it reactivates the iPad.
    If done correctly, you will experience no data loss and the result will be a reactivated iPad. I have now tried this with about 5 iPads that were locked identically by students and each time it worked like a charm.
    ~~~~~~~~~~~~~
    Try it and good luck. You have nothing more to lose if it doesn't work for you.
     Cheers, Tom

  • Date picker is not working in IE9 for sharepoint 2010 appliation pages

    Hi,
    Date picker not working  in IE9 for sharepoint 2010 appliation pages. We have enabled custom master page.
    Thanks in advance.
    Shameej

    Hi,
    For this issue, you can add the following line of code into the pickerdialog.master which lays in C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\LAYOUTS
    <meta http-equiv=”x-ua-compatible” content=”IE=8”>
    Or we can use the JavaScript code provided in this blog which would also do the trick:
    http://williamwmy.wordpress.com/2013/06/03/problem-with-sharepoint-peoplepicker/
    A thread with the same issue for your reference:
    http://sharepoint.stackexchange.com/questions/27251/hotfix-for-problem-with-sharepoint-peopleeditor-in-ie-9
    Best regards
    Patrick Liang
    TechNet Community Support

  • I try to drag a photo folder into lightroom 4 on my MAC, lightroom fails to open and a 'Corrupt Catalog Detected' screen pops up.  Clicking on 'repair catalog' does not work either.  Any suggestions?

    I try to drag a photo folder into lightroom 4 on my MAC, lightroom fails to open and a 'Corrupt Catalog Detected' screen pops up.  Clicking on 'repair catalog' does not work either.  Any suggestions?

    I'll have to get a better instructor on deleting the preferences since when I've doen it in the past nothing is there when I open LR the catalog is gone. I assumed that was what was supposed to happen so I start importing all over again.  But that is a different issue...
    The problem has been happening since at least the beta of 3 came out and I saw other posts back then saying they had similar issues but I assume it was a beta thing...  But since the full version came out and through each incremental change I haven't seen an improvement. If anything it has gotten a little worse with time.
    I have to try to be careful to not be in a hurry and start clicking around in the catalog as it seems fragile until it has cataloged all the photos in the library. When starting you will see the numbers populate the folders very slowly and I try not to click on a folder that hasn't had the number of photos pop up yet. Also draging the slider down to see more of the cataloge can have the same affect and crash the system.
    I wish I had more to go on.. I believe it may be a resources issue but as I went from 3-4 Gig I thought it would get better. I don't have big programs running but did have outlook and word running in the background along with firefox and chrome.
    And yes it only happens on this HP desktop (it's 2+ yrs old) and may be showing it's age a bit. My laptop which has less resources doesn't have the issue.. I have them sharing the catalog. (not at the same time) just when I'm working in other places in the house.
    Jeff

  • ScriptLink tag not working for application page sharepoint 2010

    <ScriptLink> tag not working for application page sharepoint 2010 for including javascript in application page, it appends either 1033 or _layout to path specified for javascript.But javascripts are located in custom document library on site and not
    in _layouts folder.
    Please help and explain in details as I tried lot on this.

    Hi,
    Use the following line of code
    <SharePoint:Scriptlink runat="server" Name="~sitecollection/Style Library/[YOUR SITE]/js/functions.js" Language="javascript" />
    Thanks,
    Vivek
    Please vote or mark your question answered, if my reply helps you

  • My sleep/wake button is sinking in so its not working is there any way to turn my ipod off

    my sleep/wake button is sinking in so its not working is there any way to turn my ipod off

    nope. If your under warranty apple will cover it. If not find a repair shop. You can try looking for an app but if it turns off then you cant turn it back on!

  • I am using iphone4 and recently updated to 7.0.4 from then onwards having issues with phone book. It will open but not able to scrool up and down and all options are not working. Is any one facing same issues?

    I am using iphone4 and recently updated to 7.0.4 from then onwards having issues with phone book. It will open but not able to scrool up and down and all options are not working. Is any one facing same issues?
    Why apple also doing such kind of softwares? Cant they do testing before releasing the product?
    Could any one help me out of this?
    Thanks,
    Rajesh

    See this discussion...
    https://discussions.apple.com/message/23731048#23731048

  • Drag and Drop not working with IE11,Firefox or Chrome on Windows 7 x64 SP1

    Hello,
     I am trying to use drag and drop on my system but it is not working. other's within my department have no issues, but they are using IE10. I also have SharePoint Designer 2013 installed.
    Any suggestions?
    Thanks,
    Derek

    Derek,IE11 is having some compatibility issues with the share point.Apart from IE11,it should work on IE10,9 and Firefox and chrome as well.
    Please check the links below that explains the issues with IE11 and the functionality of Drag and drop and limitations as-well.
    1.Since SharePoint 2013 fully support IE 32-bit version above 7, there might be compatibility issue with other browsers. I’d recommend you use IE 8,9,10 32-bit for optimal Performance.
    2. Open the same document library in Internet Explorer as this functions does not work with Firefox or Chrome by default
    3. Make sure the IE (Internet Explorer) Version should be 32-bit and not a 64-bit
    http://expertsharepoint.blogspot.de/2014/08/issues-with-sharepoint-2013-and.html
    http://expertsharepoint.blogspot.de/2013/12/how-to-upload-multiple-documents-in.html
    http://expertsharepoint.blogspot.de/2013/12/sharepoint-server-2013-drag-and-drop.html
    Anil Avula[Partner,MCP,MCSE,MCSA,MCTS,MCITP,MCSM] See Me At: http://expertsharepoint.blogspot.de/

Maybe you are looking for

  • Adobe Premiere Pro and After Effects CS5.5 Lagging Horribly with Dynamic Link

    I just bought a brand new computer. It is a beast Windows 7 64-bit Intel i7-980 6 cores with HT = 12 CPU cores Nvidia GTX 570HD 1280mb 328 bit 120gb SSD sata 3 600 gb Velociraptor drive 10000rpm 8gb DDR3 1866MHZ ram So you would think I would get no

  • Is there any way to compile FLA files into SWF files on the command line?

    I am using Adobe Flash CS4 Professional on Windows XP.  To facilitate automated nightly builds, I have been searching for a way to compile my SWF files from the FLA files under source control, but without luck.  The tools in the Flex SDK looked promi

  • Newbie question, need to get started!

    I haven't used Garageband before and can't seem to get past square one! I bought a First Act usb guitar cord to record guitar, when I plugged it in Garageband seemed to recognize it, and it looks like I'm getting a signal and can see the waves when I

  • Concurrent updates - How to prevent?

    Issue: We have a courses table that contain courses and the number of seats allocated for each course. We also have registrations table which contains the registrations for each course. There should not be more registrations than the number of seats

  • CONTROLS ARE LOCKED IN VB 2012 PROFESSIONAL EDITIO

    hi guys All worked well,  Now I can't move any control in form designer.  I remember in past edition there was a controls lock. Also I drag controls on from data source. So these are bound to the datasource. How do I change this setting. Thx JereTheB