Skip Navigation

[Resolved] different font for the search dropdwon

This thread is resolved. Here is a description of the problem and solution.

Problem:
The user was having a different font for the view's dropdown filter

Solution:
It turns to be a theme setting instead of Toolset one. It needs to be overwritten using custom CSS: http://prntscr.com/ynyi3q

The following code overwrites the styles.

select {
  font-family:canterlight;
  text-transform:uppercase;
}
This support ticket is created 3 years, 11 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 - - 9:00 – 13:00
14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 - - 14:00 – 18:00

Supporter timezone: Africa/Casablanca (GMT+01:00)

This topic contains 2 replies, has 2 voices.

Last updated by kayser 3 years, 11 months ago.

Assisted by: Jamal.

Author
Posts
#1936949

in the drop-down menu I don't have the right font
hidden link

#1936963

The Astra theme sets a different font family for select fields. We can overwrite that by adding a custom CSS code to the view hidden link

select {
  font-family:canterlight;
  text-transform:uppercase;
}
#1937661

My issue is resolved now. Thank you!