unreadable layout of Google Custom Search results in wordpress -
the google custom search result incorrectly formatted in wordpress custom search page created. each post found, post's text snippet overlays thumbnail image, making results unreadable. turn off thumbnails via gcse settings, i'd prefer find way keep them.
here's screenshot: https://soccermoviemom.com/wp-content/uploads/2016/09/gcse-layout-problem.png
a live gcse page @ https://soccermoviemom.com/search
i using gcse full-width layout, others don't work me @ all. i've tried setting different options on "div" statement within search page, doesn't help.
thank can provide!
-mj lee
all css <div>
element okay.
it's <td class="gsc-table-cell-thumbnail gsc-thumbnail">
element that's automatically folding length of second <td>
, has width:100%
.
in css file default+en.css
, at:
.gsc-table-cell-snippet-close, .gs-promotion-text-cell { vertical-align: top; width: 100%; }
you can solve adding new css property width: 72px;
.gsc-table-cell-thumbnail, .gs-promotion-image-cell
.
or override css declaration in case don't have access file.
Comments
Post a Comment