• Resolved mirnah13

    (@mirnah13)


    Hey,

    I’m new to wordpress so I hope this is the right place to be posting this question.

    I’m currently using Analytical Lite By SketchThemes for my website. If you go to my home page (tresbellefleur.com) you will notice a black box in the middle of the page than can be minimized when you press the (-) button.

    I was wondering if there is a way to remove this box completely from the home page, because I don’t plan to write anything in it and it looks odd.

    Also is it possible to remove “Analytical Lite By SketchThemes” from the side menu?

    Thank you in advance!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • You can add this to your custom CSS area or child-theme’s CSS file:

    #front-page-content {
        display: none;
    }
    
    body.ls_left #bottom-head .copyright_box {
        display: none;
    }

    The first block of codes is for the black box on your front page (#front-page-content).

    The second block of codes is for the “Analytical Lite by SketchThemes” text; they call it the .copyright_box.

    display:none is obviously telling the browser not to display it.

    Thread Starter mirnah13

    (@mirnah13)

    Thank you so much for your help ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Removing Black Square on home page.’ is closed to new replies.