Align posts to the right side in frontpage for Pinbin theme

Hi Aigars,

Thanks a bunch for the great Theme.

Im trying to make the theme display posts on home page from right to left.

However im having a difficult time locating the Inline Element Style that’s on inside the .
Where can i locate this line of code to edit?
So the i can have the CSS Rule of “Left: 0px;” changed to “Right: 0px;”

element.style {
position: absolute;
top: 0px;
right: 0px;
left: 0px;
}

Im somewhat a newbie so any held would be much appreciated.

  1. Look for functions.js file located in Pinbin theme /js folder and add the following:

isFitWidth:true,
in line 8 after
options…
2. Add following lines on your style.css and then work form there.

#post-area {
    margin-left: auto;
    margin-right: 0;
    width: 100%;
}

Let me know if you have any other questions.