footer display problem

There is the two way to resolved this problem. 1 ) using css – Add below css code in your theme style.css file. .single.single-jobpost .site-content.container {padding-bottom: 0;padding-left: 0;padding-right: 0;width: 100%;} 2 ) Please refer snapshot. – https://www.screencast.com/t/BbtVLE2Q

How to prevent a style sheet to affect a header.php or footer.php?

You can define specific stylesheets for specific PHP files. If you are using a Child Theme, use the functions.php of the Child. You should use something like: function my_custom_css() { wp_register_style( ‘stylesheet_name’, get_stylesheet_directory_uri() . ‘/stylesheet.css’ ); } add_action( ‘init’, ‘my_custom_css’ ); function my_custom_css_enqueue() { // only enqueue on product-services page slug if ( is_page( ‘my-page’ … Read more

Switch position of elements in the footer [closed]

You can solve this by using Flexbox. Add the following CSS code somewhere in your theme stylesheet or via dashboard Appearance > Customize > Additional CSS .fusion-copyright-content { display: flex !important; flex-direction: row-reverse !important; } .fusion-copyright-content .fusion-social-links-footer { margin-right: auto !important; }

Add new header/footer on landing page with plugin

You can intercept the template WordPress will be using with the template_include filter. Like this: add_filter (‘template_include’,’wpse303537_plugin_template’, 10,1); function wpse303537_plugin_template ($template) { if (is_front_page) $template = plugin_dir_path( __FILE__ ) . ‘/my-template.php’; return $template; } Alternatively, you can include an almost empty template for the landing page in your theme and fill it through the action … Read more