• Resolved michaelcallaway

    (@michaelcallaway)


    I have removed the company logo from the job listings and individual posts by using this code:

    .company_logo
    { display: none;
    }

    I also removed it by changing <?php the_company_logo(); ?> in the content-job_listing.php template. My problem is that even though the logo isn’t showing anymore the space where it used to be is still there. I can’t find anywhere in frontend.css to remove it. Any help would be appreciated.

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • On the Job Listing page for removing the empty space which is left by image please use the following CSS code

    .rp4wp-related-job_listing>ul li.job_listing a div.position, .rp4wp-related-job_listing>ul li.no_job_listings_found a div.position, ul.job_listings li.job_listing a div.position, ul.job_listings li.no_job_listings_found a div.position{
     padding: 0 !important;
    }

    On Job Details page use

    
    .single_job_listing .company img {display: none;}
    .single_job_listing .company .name {
        margin: 0;
        padding: 0;
    }
    
    • This reply was modified 5 years, 6 months ago by Gaurav.
    Thread Starter michaelcallaway

    (@michaelcallaway)

    Worked like a charm! For anyone else that might be interested in doing this, I added the following to move the company tagline over to match:

    .single_job_listing .company .tagline {
    margin: 0;
    padding: 0;
    }

    Marking this as resolved, thank you for the help!

    Hi,

    Are you placing this CSS in the theme ?

    Tks

    Marco

    Thread Starter michaelcallaway

    (@michaelcallaway)

    Yes. This is what I put in X Theme’s additional CSS:

    /*Hide company logo*/
    .company_logo
    { display: none;

    }

    /*Remove space when company logo is hidden from job listing page*/
    .rp4wp-related-job_listing>ul li.job_listing a div.position, .rp4wp-related-job_listing>ul li.no_job_listings_found a div.position, ul.job_listings li.job_listing a div.position, ul.job_listings li.no_job_listings_found a div.position{
    padding: 0 !important;
    }

    /*Remove space when company logo is hidden from job details page*/
    .single_job_listing .company img {display: none;}
    .single_job_listing .company .name {
    margin: 0;
    padding: 0;
    }

    .single_job_listing .company .tagline {
    margin: 0;
    padding: 0;
    }

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Removed company logo and a blank space is left’ is closed to new replies.