Site: https://soundcontrolte.wpengine.com/
I’ve used some code I found here plus my own styling to edit the layout of the search results page:
`.search-results .excerpt {display:none;}
.search-results .x-main.left article .entry-featured{
width: 25%;
}
.search-results .x-sidebar.right {
display: none;
}
.search-results .x-main.left {
width: 100%;
}
.search-results .x-pagination {
margin-top:2rem;
float: left;
}
.search-results .x-main.left article {
width: 45%;
float: left;
height: 10rem;
margin-top: 1rem;
margin-right: 1rem;
}
.search-results h2 {
font-size: 1.5rem;
}
.entry-header .p-meta {display:none;}
`
But I still see the background of the sidebar on the right hand side, and because I have float:left on the articles, if I unhide the sidebar, it pushes it down the page. Is there some code I can use to switch the sidebar to the left side and have it display normally?
Thanks!

