Emerge Theme: Adjusting Position of Text and Slide Circles and Remove Side Arrows

Hi @boobieshack ,

Go to Assets > theme–async.css and paste this at the bottom of the file:

/* issue 1 */
.featured-content--root[data-text-position=bottom-left] .featured-content--container{
	justify-content: center !important;
}
/* issue 2 */
.carousel--dot-nav{
	left: 0 !important;
    right: 0 !important;
    justify-content: center !important;
}
/* issue 3 */
.carousel--arrow-nav {
    display: none !important;
}

Hope it helps!