• Resolved slittle2

    (@slittle2)


    Is there some sort of guide to providing custom CSS for the plugin? Mine is not working and I’m not sure if it’s just that my code is talking to the wrong thing or I’m missing something obvious. (I’ve only been using CSS for about a month.)
    I’m trying to get the position title to be a smaller font size, and I’ve tried:

    .position_title {
    font-size:12px;
    }

    .jobs-row .clearfix .position_title .type-text .position_title {
    font-size:12px;
    }

    and

    .jobs-row-input {
    font-size:12px;
    }

    None of these have any noticeable effect. Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author BlueGlass

    (@blueglassinteractive)

    Hi @slittle2

    Try something like this:

    body .job-post .jobs-row.position_title .jobs-row-input {
    font-size: 16px;
    }

    Basicoully just look in browser inspector for the current css parameter, copy it and add “body” in fornt of it, so your css is will be the main to use by the browser.

    Best wishes

    Thread Starter slittle2

    (@slittle2)

    The CSS is hidden by scripts in the browser inspector, so I have to use guess and check to get the current parameter.

    Plugin Author BlueGlass

    (@blueglassinteractive)

    Hi @blueglassinteractive,

    I hope you found a solution for your problem, the idea of overwriting CSS is to make path the same, or add one class/ID additionally to the path, so it will look as the “main” class for the browser 🙂

    best wishes

    Thread Starter slittle2

    (@slittle2)

    After much guess and check, the correct code appears to be
    body .position_title .jobs-row-input {
    font-size:12px !important;
    }

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘CSS help’ is closed to new replies.