Hi evanhp,
For #1, open your custom.css and find this code:
.template-blog .entry-content {
float: left;
position: relative;
width: 615px;
}
The width is what's causing the comments to push into the sidebar so try changing width: 615px; to width: auto; like this:
.template-blog .entry-content {
float: left;
position: relative;
width: auto;
}
As far as the updating the theme. We do recommend that you keep your WordPress install, plugins and theme up-to-date simply for security reasons. An out of date install of WordPress could result in your website being hacked. That said, here's some steps to ensure you have less problems when updating.
- Make sure all CSS customizations are located in the custom.css.
- Make note of any customizations you did to template files such as page.php, header.php and footer.php.
- Inside the zip file you download from ThemeForest, Kriesi has included a version log document that tells what files were altered. The safest way to make sure your customizations aren't overwritten is to manually update. By that I mean instead of overwriting the entire theme only overwrite those files (or folders) listed in the version log.
- Backup your existing theme and data prior to updating. This way in case anything does happen you can revert back.
- Take screenshots of your theme options. Again, just in case anything does happen.
Hope this helps!
Regards,
Mya