• After conducting a search on my blog the search results page load a different color. I have tried a couple of different things to resolve this. The only accomplishment was a few of the div tags now contain a white background. One consideration is the page matches the background of the search field in my sidebar. Do those css values overlap?

    Does anyone know why the background on the page would be a different color?
    http://www.roberickson.com/blog

    try conducting a search based on the first entry to see the problem.

    thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • Because the search page class is search as is the class for the search box. This means that the following CSS makes the page go grey:

    /* forms */
    .search{
     width: 147px;
     color: #FFF;
     background: #959595;

    Change this to:

    /* forms */
    input.search{
     width: 147px;
     color: #FFF;
     background: #959595;

    Thread Starter visual mechanics

    (@visual-mechanics)

    that worked perfect. i noticed now that when i click on a permalink ( entry-title) the page navigates to another layout that is outta whack

    for instance:
    http://roberickson.com/blog/?p=70

    what is the source of this page within the theme? page.php??

    thanks

    That’s not a different layout; it’s another page in your template – single.php, page.php, etc. – where the code has been improperly edited; there are lots of xhtml errors that cause the bad layout.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘search results page’ is closed to new replies.