• igor

    (@igoramatuzzi)


    hi

    i am using

    .cn-close-icon
    {right: 250px; }

    to customize the X position more to the left, but without success

    any suggestion?

    thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Choose a CSS selector that is more specific or add !important to force application of your style.

    .cn-close-icon {
      right: 250px !important;
    }

    Untested, but worth a try:

    a#cn-close-notice.cn-close-icon {
      right: 250px;
    }

    More specific selector is better solution, try avoiding !important whenever possible.

    Thread Starter igor

    (@igoramatuzzi)

    thanks!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Close X position’ is closed to new replies.