• Resolved igster

    (@igster)


    Hi there, I’m hoping you can help.

    How can I do the two following things via CSS?
    1. Change the size of the “Apply for this position” title in CSS, without affecting the other headlines on my (local) site?

    With possibly an alternative of changing the heading tag to another one?

    2. Align the submit button to the right of the form. I’ve tried the code below, but it doesn’t work:

    .awsm-application-submit-btn {
    text-align: right !important;
    }

    Note: float moves the button, but creates other issues.

    Much much thanks,
    igster

    • This topic was modified 1 year, 9 months ago by igster.
Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter igster

    (@igster)

    I managed to change the title size (#1 above) by using the following:

    .awsm-job-form-inner h2 {
    font-size: 1.3125rem;
    font-weight: 600;
    font-family: ‘Nunito’,sans-serif;
    line-height: 1.43em;
    }

    Would that be the best way to accomplish this?

    I’m still unable to move the submit button, unfortunately. And any help with that would be most appreciated.

    Thanks,
    igster

    Plugin Contributor Nithin John

    (@nithi22)

    Hi,

    Thanks for reaching out to us.

    The CSS snippet you shared for the 1st query is correct. You can add it to the Theme Customizer.

    For your #2 query, you can use the below code snippet.

    .awsm-job-form-group:has(.awsm-application-submit-btn){
        display: flex;
        justify-content: flex-end;
    }

    Please try it and let us know if it works for you.

    Regards
    Nithin John

    Thread Starter igster

    (@igster)

    Thanks so much @nithi22 ,

    My apologies for the slow response. Unfortunately, the snippet for #2 query didn’t work for me.

    Best wishes,

    Igster

    Plugin Contributor Nithin John

    (@nithi22)

    Hi,

    Please create a support ticket using the form on https://wpjobopenings.com/support/ and share the details. We will try our best to help you resolve the issue as quickly as possible.

    Regards
    Nithin John

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Changing Form Title Size and Submit Button Position’ is closed to new replies.