Hi!
Yes, it looks like a CSS problem. It’s either a padding bottom, margin bottom or a visible :after pseudo element added by the theme.
Before disclosing your url, try the custom CSS fixes, one of them might work or at least make a difference:
.resdrg .item {
margin-bottom: 0 !important;
padding-bottom: 0 !important;
}
Or
.resdrg .item .content {
margin-bottom: 0 !important;
padding-bottom: 0 !important;
}
Or
.resdrg .item:after {
content: " ";
display: none;
}
Or finally:
.resdrg .item .content:after {
content: " ";
display: none;
}
I have a feeling that the first or the second one is going to work.
Hi wpdreams,
Thank you for taking the time to respond. I have tried all 4 sections of css code and none seemed to make a difference. I was placing it into the css file (style.css) for the active theme (ActiveHost).
I have done an install on a tmp url and installed your addon so I can link it.
http://menucss.mytempsite.nz/wp/index.php/support/
I understand this isn’t really a problem with your plugin it’s a conflict with the theme so I really do appreciate any help you can give on getting them to play nice together.
If you would like login details to the wordpress install you can email me at [email protected]
Hi!
Thank you for the link, I’ve found the problem. There was a global min-width attribute set to 361 pixels to “item” classes, so that’s why it was so strange.
The solution is very simple:
div[id*="ajaxsearchliteres"] .results .item {
min-height: 0;
}
That should do the trick!
Hey,
Wow, that did the trick thank you so much! No idea how you managed to work that out so quick without even having any access (only viewing).