• Resolved misstalkaholic

    (@misstalkaholic)


    Hi,
    1. I want the slider of the homepage to be full-width (only the slider).
    2nd. I want to remove the date and comments from the post content box.
    3rd. I want to reduce the size of the post content box and make it little transparent.
    Last, can I increase the size of the images of the blog post which comes when you scroll down the page?

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi there,
    1.
    Hi there,
    you can open header.php and cut

    
    
    	<div class="container">
    		<div class="row">
    			<div class="col-md-12">
    

    and paste it before

    ` <?php if ( is_home() ) {
    get_template_part( ‘part’, ‘slider’ );
    } ?>`

    then open functions.php and change

    	add_image_size( 'ci_slider', 1110, 600, true );
    

    to

    	add_image_size( 'ci_slider', 1920, 600, true );
    

    then install the Regenerate thumbnails plugin, activate it and go to Tools -> Regen. Thumbnails to run a regeneration in order for the change to be applied.
    2.3. Try this

    .slide-content .entry-meta {
        display: none;
    }
    .slide .slide-content {
        background: rgba(255, 255, 255, 0.6);
        padding:20px;
    
    }

    in your custom CSS box under Appearance | Customize |?Additional CSS.

    If you want to change your featured image size change in functions.php

    	set_post_thumbnail_size( 665, 435, true );
    

    (665,435) values to your preference.
    Then regenerate your thumbnails as suggested above.

    Let me know if this helps.

    Thread Starter misstalkaholic

    (@misstalkaholic)

    Hi, I tried doing all the changes you suggested with Regenerate Thumbnail Plugin but then my site went down and started showing http error. So, I switched back all the changes and uninstalled the plugin.

    Can you please suggest how can I change the heading font style from Capital Letters to Lower Letters (only on the homepage)?

    Hi there,
    this means your Hosting can not handle memory intensive tasks. You can contact them to resolve this or you can upload new images again, so WordPress will crop them to your new dimensions.

    Finally, You can paste this

    .home .entry-title{
     text-transform:lowercase;   
    }

    for your Homepage titles in your custom css box.

    Thread Starter misstalkaholic

    (@misstalkaholic)

    That worked. Thanks.

    You are welcome!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Home Page Slider’ is closed to new replies.