• Hi ,

    New to CSS so trying really hard to get to grips with it and slowy getting there.

    I recently removed company logo’s from my job results page

    Example

    https://www.oiljobsearch.com/job/genesis-personnel-ltd-uk-6-marine-service-engineeer/

    I used the code ;
    .company_logo{ display: none; }
    .job_listing-widget-top default-widget { display: none; }

    Which worked fine , but…

    I want to hide the box that the image was in as it is stopping all the other text from realigning to the left.

    If I goto inspect element it would be the below that I want to hide

    <div class=”col-md-3 col-sm-6 col-xs-12″>

    If I delete is through the inspect element page it realigns fine , but obviously I want to hide it with “Simple Custom CSS” as one day I may need to put it back in

    Can anyone help

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • I would use:

    
    .single_job_listing .job-meta-top > .col-md-3 {
       display: none;
    }
    
    Thread Starter Eifee69

    (@eifee69)

    Hi Bruno,

    Perfect thanks , really appreciate that. I wish I could learn to work this out on my own , so frustrating. Thanks again,

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Site text alignment.’ is closed to new replies.