sjrkar
Member
Posted 8 months ago #
Hello
I currently am working on getting a new site up and running.
http://testdrews.stanragets.com/?s=Search...&x=68&y=3&Cats=lake&ColdWater=&WarmWater=
Search string is included so that you can see exactly where I'm working from.
How do I stop wordpress from putting a break between each returned search entry? I've been trying everything, and I cannot get it to work right. I want each entry to run up along the previous so that it looks seamless.
Any thoughts?
karenalma
Member
Posted 8 months ago #
are you talking about the horizontal gray rule?
removing the border-bottom from this CSS should fix it:
[please follow http://codex.wordpress.org/Forum_Welcome#Posting_Code to mark any code in your reply]
.fco_search_results_wrapper {
width: 760px;
height: 126px;
background: url(images/fco_background_line.gif) #1B1B1B left repeat-y;
display: inline-block;
border-bottom: 2px solid #9E9E9E; <strong><=take this out or change it as follows</strong>
margin-bottom: -5px;
}
change to this:
.fco_search_results_wrapper {
width: 760px;
height: 126px;
background: url(images/fco_background_line.gif) #1B1B1B left repeat-y;
display: inline-block;
border-bottom: none;
margin-bottom: -5px;
}
sjrkar
Member
Posted 8 months ago #
Thanks. Fixed it already, just didn't get to update the forum.