added styles and code to support extra content at the bottom of pages and posts
This commit is contained in:
parent
310c99a740
commit
0411d8ab58
14
page.php
14
page.php
|
@ -57,6 +57,20 @@
|
||||||
</div>
|
</div>
|
||||||
<!--end Content-->
|
<!--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'); ?>
|
<?php //get_sidebar('secondary'); ?>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -199,8 +199,11 @@ li.news a:hover{background: transparent url('images/newshover.png') no-repeat 0
|
||||||
|
|
||||||
#content.unic, #content.mix, #content.resultats {
|
#content.unic, #content.mix, #content.resultats {
|
||||||
width:30rem;
|
width:30rem;
|
||||||
z-index:4;
|
/* z-index:4; */
|
||||||
float:left;
|
/* float:left; */
|
||||||
|
float: none;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue