Unwanted Space on Homepage

Home Support Business Point Plus Unwanted Space on Homepage

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #8081
    Kartikey Gupta
    Participant

    Website: http://www.allagrawal.org/wp/

    The issue is that I am having unwanted space between Slider and Homepage widgets on Mobile Devices or any Responsive Device.
    The gap seems to be increasing as the screen gets smaller.

    Please revert back with a possible solution.

    #8082
    ProDesigns
    Keymaster

    Hi @Kartikey Gupta

    It looks like you have added Custom CSS to the theme. One of the examples of custom CSS you have added is given below

    #home-page-widget-area .widget {
        margin: 0;
        padding: 80px 0;
    }

    You can change your CSS as per width of device using media screen like.

    @media screen and (max-width: 1240px){
    
        #home-page-widget-area .widget {
            margin: 0;
            padding: 50px 0;
        }
    }

    Please take reference of above code and add responsive CSS as per your requirement.

    Thank you.

    #8083
    Kartikey Gupta
    Participant

    I couldn’t find the custom CSS you pointed out, though the solution worked for me.
    Could you tell me where I could find this Custom CSS? I’ve added your solution to the customize page-Additional CSS, but there was no other kind of CSS there.

    #8084
    ProDesigns
    Keymaster

    Hi @Kartikey Gupta

    Appearance >> Customize >> Additional CSS is only the option to add custom CSS on themes.

    You might have used any plugin or changed core file of the theme to add your CSS. Please check it.

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.