Viewing 4 replies - 1 through 4 (of 4 total)
  • Yes, @tvprem, that’s pretty easy to do by adding a little custom CSS to override the default CSS for those images. Use the Inspect tool in your browser to find the CSS selector of the images, and then use W3Schools CSS reference (or another reference) to look up what CSS property / value to add to the “Additional CSS” section of your site (in Appearance > Customize > Additional CSS in your WordPress admin panel) or your child theme’s style.css file.

    To provide some additional specifics, while looking at your Job Listings page, try adding this to the Appearance > Customize > Additional CSS field in your site’s WordPress admin back-end (you may need to experiment with adjusting the height, width, and padding amounts to display as desired):

    .job_listings .company_logo {
    	height: 70px !important;
    	width: 70px !important;
            border-radius: 50%;
    }
    
    .job_listings .position {
    padding: 0 0 0 82px !important;
    }

    Hope this is helpful!

    Thread Starter tvprem

    (@tvprem)

    @hastibe Thank you so much! That worked like a charm.

    Do you have any idea how I can remove the Date Posted info? Please view my short screen recording to better convey the issue.

    https://share.vidyard.com/watch/iAjEHWxLbNgUobrovWKgeK?

    @tvprem — glad that was helpful!

    This will hide the date on the job listings page: .job_listings li.date > time { display: none}

    …And this will hide the date on the single job post pages: .single_job_listing .date-posted { display: none;}

    For more complex changes, the WP Job Manager Field Editor plugin is excellent, too, by the way!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to make square profile photos bigger and round’ is closed to new replies.