• Resolved MassiveEmpire

    (@massiveempire)


    Hi I would like to change the size of all company logo’s to be a landscape size. Can you point me in the direction of where to do this? I need it to display in landscape on both the summary page and the single job listing page.

    I had help previously with this query and was able to change to landscape – however it just made the image go over the top of the company tagline if there was one. I ma happy for there to be no company taglines. From memory though it also overlaid the company name which needs to be displayed. https://harrisonmcmillan.com.au/jobs/

    Let me know if I need to request paid development work. I’ve gone back to Job Board Designer who advised me to come back to you as their JBD won’t allow me to change the company logo size.

    https://www.ads-software.com/plugins/wp-job-manager/

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter MassiveEmpire

    (@massiveempire)

    I have left one entry with the logo landscape (150px) and the width style set to 150px and height auto so you can see what I mean.

    https://harrisonmcmillan.com.au/job/recruitment-team-assistant/

    .single_job_listing .company_logo {
    width: 150px !important;
    height: auto !important;
    }

    Plugin Author Mike Jolley (a11n)

    (@mikejolley)

    Once you resize the image, it only takes a few lines to fix alignment also.

    e.g.

    .single_job_listing .company p.name,
    .single_job_listing .company p.tagline {
    margin: 0 0 0 150px !important;
    }

    Thats it. Tested via inspector.

    Thread Starter MassiveEmpire

    (@massiveempire)

    Thank you – works perfectly. Great support!

    For the summary page…https://harrisonmcmillan.com.au/jobs/

    I would like to do the same thing please.

    Plugin Author Mike Jolley (a11n)

    (@mikejolley)

    ul.job_listings li.job_listing div.position {
      margin: 0 0 0 150px !important;
    }
    Thread Starter MassiveEmpire

    (@massiveempire)

    Thanks that is perfect. For others reference, this is what it finally looked like:

    .single_job_listing .company_logo {
    width: 150px !important;
    height: auto !important;
    }
    .single_job_listing .company p.name,
    .single_job_listing .company p.tagline {
    margin: 0 0 0 150px !important;
    }
    ul.job_listings li .company_logo {
    width: 150px !important;
    height: auto !important;
    }
    ul.job_listings li.job_listing div.position {
      margin: 0 0 0 150px !important;
    }
    Thread Starter MassiveEmpire

    (@massiveempire)

    Resolved.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Change size of company logo to landscape’ is closed to new replies.