Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

Μάθετε περισσότερα

invisible search result on pages with multiple pics.

  • 3 απαντήσεις
  • 5 έχουν αυτό το πρόβλημα
  • 4 προβολές
  • Τελευταία απάντηση από worel

more options

When loading the site de.picclick.com and searching after the search term "RI58-0-9000" (hotkey "CTRL+F") I can't find the search result, because the search result is 1-2 inches out of visual range. When using Google Chrome I can see the search result (it's orange highlighted). -Can the Firefox developers modify the next Firefox distribution so that the search result can be found by Firefox, too ?

When loading the site [http://LNK.by/fjbe de.picclick.com] and searching after the search term "RI58-0-9000" (hotkey "CTRL+F") I can't find the search result, because the search result is 1-2 inches out of visual range. When using Google Chrome I can see the search result (it's orange highlighted). -Can the Firefox developers modify the next Firefox distribution so that the search result can be found by Firefox, too ?

Τροποποιήθηκε στις από το χρήστη worel

Επιλεγμένη λύση

Google Chrome seems to have problems as well as I see the text disappearing.

That site places that link on one line with whitespace set to nowrap and giving all elements fixed height with no scrolling possible.

This style either via userContent.css or Stylish makes it work better and allows scrolling the text.

@-moz-document domain(de.picclick.com){
.title{ white-space:normal!important; overflow:auto!important; }
}

You can use the ChromEdit Plus or Stylish extension to have easier access to the customization files.

Ανάγνωση απάντησης σε πλαίσιο 👍 0

Όλες οι απαντήσεις (3)

more options

The search result is easy to find with Google Chrome (see picture). -But when using Firefox, the search result is hard to find.

Τροποποιήθηκε στις από το χρήστη worel

more options

Επιλεγμένη λύση

Google Chrome seems to have problems as well as I see the text disappearing.

That site places that link on one line with whitespace set to nowrap and giving all elements fixed height with no scrolling possible.

This style either via userContent.css or Stylish makes it work better and allows scrolling the text.

@-moz-document domain(de.picclick.com){
.title{ white-space:normal!important; overflow:auto!important; }
}

You can use the ChromEdit Plus or Stylish extension to have easier access to the customization files.