• Resolved AnnaHavanna

    (@annahavanna)


    Hi, I pasted a text widget in the sidebar. It is displayed on this site:
    https://goo.gl/kctZTI

    Now I’d like to have this image (the upright grey stripe) directly sticked to the right margin of my main page. How can I reduce the right space to zero?

    Thanks. Anna

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello, replace css property margin-right of id #secondary to 0
    but you can use an front-end framework for faster and easier web development to creeate your theme like bootstrap or Skeleton.

    #secondary {
        float: right;
        margin-right: 0px;
        width: 18.8%;
    }
    Thread Starter AnnaHavanna

    (@annahavanna)

    Where do I paste it? In my style.css?

    custom css plugin or in style.css but put this if you don`t replace your old style

    #secondary {
        float: right;
        margin-right: 0px !important;
        width: 18.8%;
    }
    Thread Starter AnnaHavanna

    (@annahavanna)

    Yes! It worked. Thanks to zota marius.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘element in sidebar in not properly displayed’ is closed to new replies.