On the Front Page of Supreme Directory V2, I am trying to move the title, sub-title, and search controls to the left side of the page.
I attempted to move the title to the left side of the page with each of the following pieces of CSS, but none of them worked.
.home .sd .featured-area h1.entry-title {
text-align: left !important;
}
.home .sd .featured-area h1.entry-title {
float: left !important;
}
.sd .featured-area h1.entry-title {
text-align: left !important;
}
.sd .featured-area h1.entry-title {
float: left !important;
}
I also tried to move the “Search Near” control with the following CSS that did not work out.
.home.sd .featured-area .gd-search-field-near {
float: left;
}
.home.sd .featured-area .gd-search-field-near {
float: left !important;
}
What do I need to do in order to move the title, sub-title, and search controls to the left side of the page?