PassMark Logo
Home » Forum

Announcement

Collapse
No announcement yet.

Layout questions:

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Layout questions:

    Three, hopefully simple, layout questions:

    1 - Currently I see

    "234 results found.

    24 pages of results."

    I'd like this on one line: "234 results found. 24 pages of results."

    Is this possible?

    2 - How do I increase the number of characters visible in the input box?

    I understand it goes in input.zoom_searchbox { } but I can't figure what to type.

    3 - Can I replace the text "Search for" with a graphic?

    Many thanks, Linda
    Last edited by LindaRossiter; Sep-14-2006, 10:04 PM.

  • #2
    Originally posted by LindaRossiter View Post
    1 - Currently I see

    "234 results found.

    24 pages of results."

    I'd like this on one line: "234 results found. 24 pages of results."
    It'll be easier in V5 to achieve this, since we've re-organized the CSS layout.

    But in the meantime, with V4.2, here's one hack about sort of way to achieve this:

    Code:
    .summary { font-size: 80%; font-style: italic; display: inline; } 
    .summary br { display: none; }
    .results br { display: none; }
    2 - How do I increase the number of characters visible in the input box?
    I understand it goes in input.zoom_searchbox { } but I can't figure what to type.
    Specify the width attribute, like so:

    Code:
    input.zoom_searchbox { width: 300px; }
    3 - Can I replace the text "Search for" with a graphic?
    You could do this by replacing the "Search for" text in the Language translation file with the HTML for the image. See the chapter on using ZLANG/Language files to translate the search page text in the Users Guide:
    http://www.wrensoft.com/zoom/usersguide.html

    If you are doing alot of changes to the search form and want more flexibility than the CSS allows, you should consider specifying your own search form in HTML, as described in this FAQ:
    http://www.wrensoft.com/zoom/support...tml#searchform
    --Ray
    Wrensoft Web Software
    Sydney, Australia
    Zoom Search Engine

    Comment


    • #3
      Brilliant help, thanks.

      Now the results and the summary are on the same line (great!) how do I get a space between them? I currently see

      235 results found.24 pages of results.

      Thanks, Linda

      ** Solved myself with the language file. Thanks **
      Last edited by LindaRossiter; Sep-15-2006, 08:25 AM. Reason: Problem solved

      Comment

      Working...
      X