Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Mike Jolley (a11n)

    (@mikejolley)

    You need to add some CSS rules to your theme CSS. Some themes have an admin field to add rules, others don’t so consult your theme’s documentation.

    Thread Starter mlavoraperry

    (@mlavoraperry)

    Thanks. Can you please tell me what wording to use for the rules? I want to change color, weight, size and possibly type of the fonts.

    http://www.eastclevelandohio.us

    Plugin Author Mike Jolley (a11n)

    (@mikejolley)

    The selector would be

    .widget_recent_jobs li h3 {} for example. Thats the job title.

    Thread Starter mlavoraperry

    (@mlavoraperry)

    Thanks. I just saw your reply.

    I do not know much coding. So I appreciate your help.

    What is the code to change the widget font size for the text (not the heading), specifically for the Job Location and Employer.

    And what is the coding to change the text color for both the heading and the aforementioned text?

    I think that’s it for what I am a trying to do.

    Thanks.

    Plugin Author Mike Jolley (a11n)

    (@mikejolley)

    I’ll give a sample, but you’ll need to customise it (or ask the theme dev, or hire someone if you need further assistance with styling as this isn’t really part of my plugin).

    This is for the size and colour:

    .widget_recent_jobs li h3 {
    font-size: 16px;
    color: #000;
    }
    .widget_recent_jobs li ul.meta li {
    font-size: 16px;
    color: #000;
    }

    Add to your theme CSS file and you should see 16px sized black text instead.

    Thread Starter mlavoraperry

    (@mlavoraperry)

    Thanks, Mike!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Change WP Job Manager Widget Font’ is closed to new replies.