Search results put image in line with the text

I was wondering if it is possible to put the image on the search results page on the same line as the text for the title/excerpt? Also wondering if it is possible to hide to tags on the results page.

I made the images smaller using

.search-results .entry-featured {
width: 25%;
}

here’s a bad picture showing what I would like to do

Hi,

You can try this code instead.

.search-results .hentry {
   clear:both;
   overflow:hidden;
}

.search-results .entry-featured {
   float:left;
   width: 25%;
}

.search-results .entry-wrap {
   float:right;
    width:75%;
 }

.search-results .entry-footer {
   display:none;
}

In case you want to learn css and how to customize your site using it kindly refer to the videos below


Hope that helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.