• Resolved archies999

    (@archies999)


    Hey, I have been trying to change the size of the H1 but Im unable to change it. For mobile devices it goes out of the canvas and I dont want this to happen. Could you please help me resolve this issue?
    Thanks.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Contributor Nithin John

    (@nithi22)

    Hi,

    Thanks for reaching out to us.

    The style for heading on the job detail page is inherited from your theme styles. You can use the below CSS to control the font size of the heading on mobile devices. Please adjust the styles according to your requirement. If your theme supports any option to add CSS, you can use the same. If not, you can add it under the ‘Additional CSS’ section in the theme customizer.

    @media (max-width:690px) {
    	body.single-awsm_job_openings .row .col.section-title h1 {
    		font-size: 60px !important;
    	}
    }
    
    @media (max-width:520px) {
    	body.single-awsm_job_openings .row .col.section-title h1 {
    		font-size: 45px !important;
    	}
    }

    Regards
    Nithin John

Viewing 1 replies (of 1 total)
  • The topic ‘How can I change the WP Job Opening title size?’ is closed to new replies.