CSS Full Width In Job Listing

0
CSS Full Width In Job Listing 1
salain
Aug 27, 2016 09:24 AM 5 Answers General
Member Since Aug 2016
Subscribed Subscribe Not subscribe
Flag(0)

I've read the FAQ and the other people asking this question and I still can't get it to work?  This is my link http://www.smartfitness.ae/job/exercise-physiologist-dubai/
I think I just need to find the right div id?

0 Subscribers
Submit Answer
Please login to submit answer.
5 Answers
Sort By:
Best Answer
0
CSS Full Width In Job Listing 2
salain
Aug 27, 2016
Flag(0)

Fix it by doing this
function job_bm_action_before_single_job() {
echo '

';
}

function job_bm_action_after_single_job() {
echo '

';

CSS Full Width In Job Listing 3
PickPlugins
- Aug 27, 2016 06:38 PM
Flag (0)
0

Sorry to say code isn’t display properly here, we are working our forum(updating the forum apps) have you fixed the issue ? Regards

Sign in to Reply
Replying as Submit
Best Answer
0
CSS Full Width In Job Listing 2
salain
Aug 27, 2016
Flag(0)

OK I discovered that I needed to edit the parent theme. But now how do I adjust the background colour?

Sign in to Reply
Replying as Submit
Best Answer
0
CSS Full Width In Job Listing 2
salain
Aug 27, 2016
Flag(0)

I'm editing the child functions.php. This is the entire file
'UAE',
'country' => 'UAE',
'zip_label' => 'Landmarks',
'city_label' => 'Emirate',
'state_label' => 'Emirate',
'states' => array(
'', 'Dubai'
)
);

return $address_types;
}

add_filter( 'gform_currencies', 'update_currency' );
function update_currency( $currencies ) {
$currencies['USD'] = array(
'name' => __( 'Dirhams', 'gravityforms' ),
'symbol_left' => 'AED',
'symbol_right' => '',
'symbol_padding' => ' ',
'thousand_separator' => ',',
'decimal_separator' => '.',
'decimals' => 2
);

return $currencies;
}

add_action('job_bm_action_before_single_job', 'job_bm_action_before_single_job', 10);
add_action('job_bm_action_after_single_job', 'job_bm_action_after_single_job', 10);

function job_bm_action_before_single_job() {
echo '

';
}

function job_bm_action_after_single_job() {
echo '

';
}

?>

Sign in to Reply
Replying as Submit
Best Answer
0
CSS Full Width In Job Listing 2
salain
Aug 27, 2016
Flag(0)

This didn't work

add_action('job_bm_action_before_single_job', 'job_bm_action_before_single_job', 10);
add_action('job_bm_action_after_single_job', 'job_bm_action_after_single_job', 10);

function job_bm_action_before_single_job() {
echo '

';
}

function job_bm_action_after_single_job() {
echo '

';
}

?>

Maybe it's because this is a child theme?

I notice this in the functions.php file too. Maybe this offers a clue

 

/* ------------------------------------------------
Load Login Stylesheet
------------------------------------------------ */

function custom_login_css() {
echo '';
}
add_action('login_head', 'custom_login_css');

 

Sign in to Reply
Replying as Submit
Best Answer
0
CSS Full Width In Job Listing 7
PickPlugins
Aug 27, 2016
Flag(0)

Welcome to our forum,

I have checked your link, try class "container main-content"
Please see the code here.
https://wordpress.org/plugins/job-board-manager/faq/

Regards

Sign in to Reply
Replying as Submit