Viewing 15 replies - 1 through 15 (of 23 total)
  • Thread Starter IYueI

    (@iyuei)

    Edit First Post for Image Link Error.

    Plugin Author Asgaros

    (@asgaros)

    Hi IYueI!

    First of all: Have you modified some of the plugin files? At the forum overview page (https://www.mihostgratis.com.co/comunidad-de-soporte/) for example I can see some closing </p>-tags which should not be there.

    Do you use own HTML-code in forum-names/descriptions?

    Thread Starter IYueI

    (@iyuei)

    can not be, is the template that use causing the problem , a question to fix it?

    Plugin Author Asgaros

    (@asgaros)

    Yes, I think it is a problem with one of your plugins or the used template which adds some p-tags at some places. Maybe you can ask the author of that plugin/theme for a fix because it is not possible for me to change files in other plugins/themes.

    Thread Starter IYueI

    (@iyuei)

    It’s a shame , if the problem is caused by the template , and not know how to fix it . Perhaps you know I file have to look to change that.

    https://www.mihostgratis.com.co/wp-content/uploads/2016/03/Up.png

    Plugin Author Asgaros

    (@asgaros)

    Where have you downloaded the template?

    Thread Starter IYueI

    (@iyuei)

    Plugin Author Asgaros

    (@asgaros)

    Ufff, that is really a big problem because it is definitely caused by that theme and not by the forum plugin. I saw that you switched to another theme a couple of minutes ago and the forum was looking fine. And I cant tell you what is causing this issue, it could be everywhere in some PHP file, it can be a JavaScript logic as well, who knows.

    Thread Starter IYueI

    (@iyuei)

    It’s really a shame , your plugin is very nice, and I am not an expert in programming , only a CMS user . I have no idea I could do .

    In my other site https://www.negrasyblancas.com , if it works correctly.

    ??

    in your template
    https://www.mihostgratis.com.co/wp-content/themes/hostme/css/main.css – line 315
    space for sidebar
    #main {
    width: 630px;
    float: left;
    overflow: hidden;
    padding: 0 0 20px 0;
    z-index: 1;
    }

    Check out
    max-width: 1000px;

    And check

    or comment out

    Thread Starter IYueI

    (@iyuei)

    in your template
    https://www.mihostgratis.com.co/wp-content/themes/hostme/css/main.css – line 315
    space for sidebar
    #main {
    width: 630px;
    float: left;
    overflow: hidden;
    padding: 0 0 20px 0;
    z-index: 1;
    }

    Check out
    max-width: 1000px;

    And check

    or comment out

    Hi , does not work , I put 1000px , but remains the same, look at the link input demo.

    https://www.mihostgratis.com.co/comunidad/?view=thread&id=1#postid-1

    #main { width:1000px; float:left; overflow:hidden; padding:0 0 20px 0; z-index:1; }
    .leftsidebar #main .content { padding-top:20px; padding-right:10px;}
    .rightsidebar #main .content { padding-top:20px; padding-right:10px;}

    Try the, line 315 https://www.mihostgratis.com.co/wp-content/plugins/asgaros-forum/skin/style.css…table-layout: fixed; replace the “auto”

    #af-wrapper .post-content {
    display: table;
    width: 100%;
    margin: 0;
    padding: 0;
    table-layout: auto;
    }

    or display: table-cell -comment out or modify attribute

    #af-wrapper .post-message {
    display: table-cell;
    width: auto;
    vertical-align: top;
    padding: 15px;
    word-break: break-word;
    position: relative;
    }

    Plugin Author Asgaros

    (@asgaros)

    This would fix it, but will break some other styling. The problem is that it caused by some <p>-tags which should not be there. When you remove them via the chrome developer tools it is looking fine.

    https://fs5.directupload.net/images/160324/k66dnab7.png

    You should really find a way to contact the theme author.

    Thread Starter IYueI

    (@iyuei)

    Code Page here:

    Page.php.

    <?php
    /**
     * @package WordPress
     * @subpackage Default_Theme
     */
    
    get_header();
    require(sys_includes."/var.php");
    ?>
    <!-- #subheader -->
    <div id="subheader">
    	<div class="subheader" style="background-color:<?php echo $subheaderbg_display=get_post_meta($post->ID, 'subheaderbg_display','true')?>">
    	<?php sub_header_text($post->ID); ?>
    	</div>
    </div>
    <!-- #subheader -->
    
       <!-- .contentwrap -->
    <div class="pagemid <?php sidebaroption($post->ID); ?>">
    	<div class="inner">
    
    		<!-- #main -->
    		<div id="main">
    		<?php $breadcrumbs_display=get_post_meta($post->ID, 'breadcrumbs_display', true); ?>
    		<?php $breadcrumbs_display ? '': my_breadcrumb(); ?>
    		<!-- breadcrumb -->
    
    		<!-- .content -->
    		<div class="content">
    		<?php $timthumboption = get_option("timthumboption"); ?>
    		<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    		<div class="post" id="post-<?php the_ID(); ?>">
    			<?php the_content('<p class="serif">'.__('Read the rest of this page &raquo;', 'hostme_front').'</p>'); ?>
    			<?php wp_link_pages(array('before' => '<p><strong>'.__('Pages:', 'hostme_front').'</strong>', 'after' => '</p>', 'next_or_number' => 'number')); ?>
    		</div>
    		<?php endwhile; endif; ?>
    		<div class="clear"></div>
    		<?php edit_post_link(__('Edit', 'hostme_front'), '<p>', '</p>'); ?>
    
    		<?php
     $comments=get_option('commentstemplate');
    if($comments=="pages" ||  $comments=="both")
    {
    comments_template('', true);
    }
    ?>
    			</div>
    			<!-- .content -->
    
    		</div>
    		<!-- #main -->			
    
    		<!-- #sidebar -->
    		<div id="sidebar">
    		 <?php get_sidebar(); ?>
    		</div>
    			<!-- #sidebar -->
    
    		</div>
    	</div>
        <!-- .contentwrap -->			
    
    <div class="clear"></div>
    <?php get_footer();?>

    Plugin Author Asgaros

    (@asgaros)

    Maybe this is caused by some javascript in your theme or some other WordPress plugins.

    Please deactivate ALL other plugins and tell me if it is working. If not: Try to check the javascript files in your theme.

Viewing 15 replies - 1 through 15 (of 23 total)
  • The topic ‘Hi, very small text area .’ is closed to new replies.