PassMark Logo
Home » Forum

Announcement

Collapse
No announcement yet.

Radio buttons not appearing when Chrome displays search.php and search_template.php

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

  • Radio buttons not appearing when Chrome displays search.php and search_template.php

    The radio buttons that are below the search box, in the sentence: "Match: any search words all search words"
    are not shown when viewed with Chrome or Edge browsers. Firefox does show them. I am testing a customized
    "search_template.php" file. Here is a link to the page:

    https://www.cutglass.org/membersonly...est/search.php

  • #2
    You make made a mistake in your CSS code, in the style.css file.

    In that file on line 27 you have entered in this style.

    form textarea
    {
    -webkit-appearance: none;
    }


    The "none" tag results in the radio control being hidden.

    Also you said you were using a search_template.php file. You can't do this. The file needs to be search_template.html, you can't have PHP in it. There are other ways to include your own PHP code however.

    Comment


    • #3
      Thank you so much.
      Linda

      Comment

      Working...
      X