@JakeBuly: I will try to answer it all.
• I need to remove the small border around all the images on my site if possible.
— You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
#main #content .post-img a, #main #content img { border: none; }
• I need to remove the name from the top of each page, ex: Home/About/Etc.
— You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
.page .entry-title { display: none; }
• I need to remove the extra space from the end of the menu bar.
— The extra space depends on the menu item you have added, don’t worry about it. It’s not an issue. You can try in adding the following CSS in “Appearance => Theme Options => Custom CSS” box.
#header #mainmenu ul li a { padding: 0 15px 0 16px; }
#header #mainmenu ul li:last-child { border-right: none; }
• I also need to move the homepage social icons above the logo if possible!
— You can try in adding the following CSS in “Appearance => Theme Options => Custom CSS” box.
#header .layout-978 {
position: relative;
}
#header ul.social-profile {
float: right;
position: absolute;
right: 20px;
top: 10px;
}
• And remove where it shows all the category info on each post.
— You can try in adding the following CSS in “Appearance => Theme Options => Custom CSS” box.
.single .tags { display: none; }