Tagged: 

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #596376

    Hello,

    I hope I can explain my problem in english so that anybody can understand me ;-)

    I have the stretched design and a fixed background image, now I want the layout elements have a solid background color (so that they are not transparent and the image is not screened there).

    When I have on one side two layout elements among themselves, and set an border radius on the upper element corners (Edit Column -> Setting -> Border Radius Top Right & Top Left to 10px) and set on the lower element an border radius also (Edit Column -> Setting -> Border Radius Bottom Right & Bottom Left to 10px) a little transparent line with 1px appears between these two elements!!

    This line appears only when working with the round corner setting, when the border radius is set to 0px (default) everything is ok …

    Now a IMPORTANT feature of this phenomenon is:
    These 1px lines are only visible when I use INTERNET EXPLORER to view the website ?!?!?
    With Firefox, Chome and other browsers the strange 1px lines are not visible and everything is fine !!!

    Is there any explanation or solution (but not like: “use a real” browser ;-)) ??

    greeting
    Frankmen

    #596623

    Hello again,

    here’s an example of this strange line:

    First the “correct” view with Google Chrome:
    http://www.chung-gun-hammersbach.de/Chrome.jpg

    And here the presentation with Internet Explorer:
    http://www.chung-gun-hammersbach.de/IE.jpg

    perhaps it will help …

    #596760

    Hi!

    On which version of IE are you noting this?

    Regards,
    Josue

    #596861

    Hello Josue,

    that was a good question, i hat testet the side before only with IE 11.
    Now I’ve make some tests with IE 8 but this browser will compete ignore the border radius settings.

    I’ve found somthing new:
    Wenn I use IE11 to view the page and zoom in (ex. 150%) or out (ex. 75%) in line changed the appearance. !!
    Somtimes it looks correct “no line” and sometime 1px or 2px high !?!?!

    Is there a way with Qick-CSS Code to detect Microsoft Internet Explorer and disable the border radius settings for the whole page to Default (0px) ?

    I think it’s better to disable it completely before they appers with this ugly line between the layout elements

    With all other testet browsers the border radius Looks fine …

    #596862
    #596984

    Hey!

    Maybe this could work, add the following to your theme / child theme functions.php:

    add_action('wp_head', function() {
    ?>
    <!--[if IE]>
    <style>*{border-radius: 0 !important; }
    <![endif]-->
    <?php
    });

    Cheers!
    Josue

    #597073

    Hello Josue,

    thank you for the code, it works perfekt with IE 9 (i have test it) but not with IE 10 and above … see:

    https://msdn.microsoft.com/en-us/library/hh801214(v=vs.85).aspx

    any other ideas ??

    greetings
    Frankmen

    #597078

    Hi it’s me again,

    I found a solution for IE 10 & IE 11 !!

    @media all and (-ms-high-contrast: none) {
    .flex_column {
    border-radius: 0px !important;
    }}

    Topic can be closed …

    Regards,
    Frankmen

    #597099

    Glad you figured it out.

    Best regards,
    Josue

Viewing 9 posts - 1 through 9 (of 9 total)
  • You must be logged in to reply to this topic.