Viewing 2 replies - 1 through 2 (of 2 total)
  • are you talking about the horizontal gray rule?

    removing the border-bottom from this CSS should fix it:

    [please follow https://codex.www.ads-software.com/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;
    }

    Thread Starter sjrkar

    (@sjrkar)

    Thanks. Fixed it already, just didn’t get to update the forum.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Removing Gap / Break Between Posts’ is closed to new replies.