added styles and code to support extra content at the bottom of pages and posts

This commit is contained in:
jorge-vitrubio 2022-09-12 14:27:02 +02:00
parent 310c99a740
commit 0411d8ab58
2 changed files with 33 additions and 16 deletions

View File

@ -57,6 +57,20 @@
</div>
<!--end Content-->
<div id="content" class="indexall tags">
<?php
// Detect plugin. For use on Front End only.
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
// check for plugin using plugin name
if ( is_plugin_active( 'hangar-wp-plugin/hangar-wp-plugin.php' ) ) {
//plugin is activated do
hangar_show_extra_content();
}
?>
</div><!-- end indexall tags -->
<?php //get_sidebar('secondary'); ?>
</div>

View File

@ -199,8 +199,11 @@ li.news a:hover{background: transparent url('images/newshover.png') no-repeat 0
#content.unic, #content.mix, #content.resultats {
width:30rem;
z-index:4;
float:left;
/* z-index:4; */
/* float:left; */
float: none;
display: flex;
flex-direction: column;
}