Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Job types show bullet included on [jobs] filter form in some themes/browsers #2096

Open
3 tasks done
makske opened this issue Jan 5, 2021 · 8 comments
Open
3 tasks done

Comments

@makske
Copy link

makske commented Jan 5, 2021

The formatting on my published page for the 'job type' is all funky. Is there a way to adjust the formatting of this? Picture below. TIA

Screenshots

Screen Shot 2021-01-04 at 5 15 46 PM

Expected behavior
It should be even formatting -- there are random dots that are placed inconsistently with each type

Isolating the problem (mark completed items with an [x]):

  • I have deactivated other plugins and confirmed this bug occurs when only WP Job Manager plugin is active.
  • This bug happens with a default WordPress theme active.
  • I can reproduce this bug consistently using the steps above.

WordPress Environment

  • WordPress Version: 5.6
  • WP Job Manager Version: 1.34.5
  • PHP Version: 7.2.34
  • Other important details:
@tripflex
Copy link
Collaborator

tripflex commented Jan 7, 2021

This is probably being caused by some other plugin or the theme you're using, as WP Job Manager specifically has CSS to hide the list item bullets, but it seems your theme or another plugin is overriding that causing them to show.

I guess we could make the CSS selector more specific @jom ?

.job_types {
list-style: none outside;

If you can provide the URL to where we can see this i can tell you what is causing it.

@makske
Copy link
Author

makske commented Jan 7, 2021 via email

@tripflex
Copy link
Collaborator

tripflex commented Jan 7, 2021

Oh weird something appears to be setting ::marker before the elements, first i've seen this.

Add this CSS to your site which should fix it:

ul.job_types li::marker {
    content: "";
}

@makske
Copy link
Author

makske commented Jan 7, 2021 via email

@tripflex
Copy link
Collaborator

tripflex commented Jan 7, 2021

Add it to the style.css file in your child theme's directory, should be something like wp-content/themes/THEMENAME/style.css

You can also check the customizer you may be able to add custom CSS in there as well

@tripflex
Copy link
Collaborator

tripflex commented Jan 7, 2021

It looks like you're using a frontend builder as well, you can probably add it somewhere in that as well, your theme developer can help if you can't figure it out

@tripflex
Copy link
Collaborator

@jom i've been seeing this pop up every now and then, seems that we may need to add ::marker to the css as well to prevent any output of that (i can't really find much information on this though). it seems this is browser based, but not sure if it requires something from theme to "enable" it or not (honestly haven't done much research on it)

@jom jom changed the title Display Formatting Issue Job types show bullet included on [jobs] filter form in some themes/browsers Jan 27, 2021
@makske
Copy link
Author

makske commented Feb 2, 2021

Thank you @tripflex -- Anything helps! I tried to add the CSS you wrote above but nothing changed. I am working in Chrome but have also tried Safari. Let me know if there are any other solutions!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants