• SirLouen

    (@sirlouen)


    I’ve found a strange bug in one site (forotoc.com)

    Broken style

    It sets width to 100% which breaks the style

    .cookie-notice-container {
        padding: 15px;
        text-align: center;
        width: 100%;
        z-index: 2;
    }

    If I force width to auto:

    .cookie-notice-container {
        width: auto;
    }

    The issue is solved:

    Right styling

    • This topic was modified 5 years ago by SirLouen.
  • The topic ‘Formatting bug?’ is closed to new replies.