How to modify the css

If i understood your problem you want start everything from Right to Left

use like this <body dir="rtl">. or use to move specific content from Right to Left.

.main-content {
  direction: rtl;  /* Right to Left */
}

UPDATE:

As per our discussion you want to move one box move to right so as there is inline CSS in your code. so the only solution is use !important which I really don’t like.

put this line on your CSS file and I hope it will solve your problem. see a DEMO.

article.grid-sizer{position:absolute; right:0 !important;top: 120px;}

Leave a Comment