• Hello,

    I’m trying to personalize the illdy theme to my will..

    From section about i deleted these weird (for me) widgets but the sections still is big as the widgets should be there.. How i can do it smaller.. i mean shorter..

    Can someone help me with it?

    And also another topic is there possibility to add miniature photo to every post i write on blog ? because now there isn’t any, when i see posts in latest news section..

Viewing 7 replies - 1 through 7 (of 7 total)
  • Hi @kubamotopasja,

    I hope you are well today and thank you for your question.

    Could you please share me your site URL where it’s displaying so that i can help you to achieve it?

    Kind regards,
    Vinod Dalvi

    Thread Starter kubamotopasja

    (@kubamotopasja)

    https://www.blog.motoryzacyjnapasja.pl

    here are screens what i want to do..

    Size of about screen
    https://imageshack.com/a/img922/7338/cqztIJ.png
    Miniatures and translation to Polish
    Front Page: https://imageshack.com/a/img921/2685/21zccA.png
    Blog Page: https://imageshack.com/a/img921/8665/nbqFE9.png

    Please help ??

    You can try removing the empty space by adding the following CSS code in the Custom CSS option of your theme on the below path.

    Admin Area -> Appearance -> Customize -> Additional CSS

    
    
    #about .section-header {
        margin-bottom: 0;
    }

    Regarding other questions please ask them in our dedicated illdy theme support forum here https://colorlib.com/wp/forums/forum/illdy/ where the theme developer is providing help.

    Thread Starter kubamotopasja

    (@kubamotopasja)

    Help me please, where exactly i should paste this formula?

    This is whole code of about section..

    <?php
    /**
     *	The template for displaying about section in front page.
     *
     *	@package WordPress
     *	@subpackage illdy
     */
    ?>
    <?php
    if ( current_user_can( 'edit_theme_options' ) ) {
    	$general_title = get_theme_mod( 'illdy_about_general_title', __( 'About', 'illdy' ) );
    	$general_entry = get_theme_mod( 'illdy_about_general_entry', __( 'It is an amazng one-page theme with great features that offers an incredible experience. It is easy to install, make changes, adapt for your business. A modern design with clean lines and styling for a wide variety of content, exactly how a business design should be. You can add as many images as you want to the main header area and turn them into slider.', 'illdy' ) );
    }else{
    	$general_title = get_theme_mod( 'illdy_about_general_title' );
    	$general_entry = get_theme_mod( 'illdy_about_general_entry' );
    }
    ?>
    
    <?php if ( $general_title != '' || $general_entry != '' || is_active_sidebar( 'front-page-about-sidebar' ) ) { ?>
    
    <section id="about" class="front-page-section" style="<?php if( !$general_title && !$general_entry ): echo 'padding-top: 130px;'; endif; ?>">
    	<?php if( $general_title || $general_entry ): ?>
    		<div class="section-header">
    			<div class="container">
    				<div class="row">
    					<?php if( $general_title ): ?>
    						<div class="col-sm-12">
    							<h3><?php echo illdy_sanitize_html( $general_title ); ?></h3>
    						</div><!--/.col-sm-12-->
    					<?php endif; ?>
    					<?php if( $general_entry ): ?>
    						<div class="col-sm-10 col-sm-offset-1">
    							<p><?php echo illdy_sanitize_html( $general_entry ); ?></p>
    						</div><!--/.col-sm-10.col-sm-offset-1-->
    					<?php endif; ?>
    				</div><!--/.row-->
    			</div><!--/.container-->
    		</div><!--/.section-header-->
    	<?php endif; ?>
    	<div class="section-content">
    		<div class="container">
    			<div class="row">
    				<?php
    				if( is_active_sidebar( 'front-page-about-sidebar' ) ):
    					dynamic_sidebar( 'front-page-about-sidebar' );
    				elseif( current_user_can( 'edit_theme_options' ) & defined("ILLDY_COMPANION") ):
    					$the_widget_args = array(
    						'before_widget'	=> '<div class="col-sm-4 col-sm-offset-0 col-xs-10 col-xs-offset-1 col-lg-4 col-lg-offset-0 widget_illdy_skill">',
    						'after_widget'	=> '</div>',
                                                    'before_title'	=> '',
    						'after_title'	=> ''
                                                      );
    				endif;
    				?>
    			</div><!--/.row-->
    		</div><!--/.container-->
    	</div><!--/.section-content-->
    </section><!--/#about.front-page-section-->
    
    <?php } ?>
    • This reply was modified 7 years, 10 months ago by kubamotopasja.
    • This reply was modified 7 years, 10 months ago by kubamotopasja.

    Help me please, where exactly i should paste this formula?

    Could you please tell me regarding which formula you are talking about?

    Thread Starter kubamotopasja

    (@kubamotopasja)

    This one ??

    #about .section-header {
        margin-bottom: 0;
    }

    Formula/CSS Code ?? sorry for that

    Where i should paste it ?

    I have already told you in my previous reply that you have to add the shared CSS code on the below path.

    Admin Area -> Appearance -> Customize -> Additional CSS

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Size of About Section’ is closed to new replies.