Categories on front page alignment

I have actually solved this. For those that may run across this issue and want to show multiple categories on the front page and have the categories side by side on the front page as opposed to stacked on each other. Us the child theme I attached (From this post) and add the following CSS

/Category Listing/
.post-inner-content ul.post-categories li {
content: “-”;
display: inline-block;
margin-left: 4px;
}

.post-inner-content ul.post-categories li:after {
content: “-”;
display: inline-block;
margin-left: 4px;
}
ul.post-categories li:last-child:after {
display: none;
}

body.single-post ul.post-categories li:after {
content: “-”;
display: inline-block;
margin-left: 4px;
}
body.single-post ul.post-categories li:last-child:after {
display: none;
}