• Hey!

    I try to use your plugin but it doesn´t work correctly.

    I create a new gantt and put the shortcode in to the page, the gannt will be shown but the formatting is not displayed correctly. The calendar row is displayed in multiple rows and this kills the format. I´m using the wp 3.5.1 and theme Twenty Twelve.

    Do ya have any advice?
    ps. i can´t give you acces to the site (corporation) but i can send you an image

    thx mike

    http://wordpress.org/extend/plugins/wpit-gantt/

Viewing 1 replies (of 1 total)
  • i had the same issue but since you add the css
    all is ok

    <?php get_header(); ?>
    <style>
    	.gantt
    	{
    		margin:0;
    	}
    	.gantt aside
    	{
    		width:250px;
    	}
    	.gantt-data
    	{
    		margin-left: 251px;
    	}
    </style>
    	<div class="grid_12 clearfix" id="main_content2" style="margin-top: 52px;height:900px;">
    		<div id="planning" style="width: 100%;height: 100%;">
    			<?php
    				//$the_gantt = hexdec(isset($_GET['gantt']));
    				$the_gantt = '[gantt id="1"]';
    				echo do_shortcode($the_gantt);
    			?>
    		</div>
    	</div>
    <?php
    get_footer();
    ?>

Viewing 1 replies (of 1 total)
  • The topic ‘wrong formatting’ is closed to new replies.