Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Search Results Theme Issue WordPress

  • SOLVED

Hi everyone.

I am having issues regarding search results at the following url:
http://thehelix.ie/

The main issue seems to be a difference in rendering 'post' versus 'pages' in results. The 'posts' seem to render correctly:
http://thehelix.ie/?s=a+christmas+carol

But when a 'page' search is requested the results render incorrectly:
http://thehelix.ie/?s=customer+feedback

I'm not expert in these things but I thought it maybe something with my loop.php file within the theme, but I cannot seem to see anything within this that would point to the issue.

I can forward on loop and search files if necessary.

Anyone out there know how to fix this?

Thanks
The evolve team

Answers (3)

2011-11-15

Christianto answers:

Hi,

Some of your style regarding class "page" on style.css line 230 make this problem.
Maybe you can edit it specific only for search result..


Christianto comments:

this is the style...

.page, .nextpostslink, .previouspostslink {
font-family: 'AgentConDBNormal';
font-weight:normal;
font-size:15px;
color:#808080;
background: url(../../image/theme/pagenavi.png) right no-repeat;
display: inline-block;
width:36px;
height:32px;
text-align:center;
}


since the .page will be the class of each post wrapper you might want to separate it so the width, height, text-align etc will not be inherit to each post..


.page{
font-family: 'AgentConDBNormal';
font-weight:normal;
font-size:15px;
color:#808080;
}
.nextpostslink, .previouspostslink {
font-family: 'AgentConDBNormal';
font-weight:normal;
font-size:15px;
color:#808080;
background: url(../../image/theme/pagenavi.png) right no-repeat;
display: inline-block;
width:36px;
height:32px;
text-align:center;
}


Christianto comments:

Ok, I've edit the style.css
You can replace it with your style.css on your theme to see if it works..

directory of file:
http://thehelix.ie/web2011/wp-content/themes/EvolveHelix/css/style/style.css


Christianto comments:

Sorry the download link isn't appear..

Please download from below attachment link..