• akara22

    (@akara22)


    **NSFW**

    I have been looking it up but I am unsure which CSS sheet I need to edit as someone else made my site for me.

    All I want to do is reduce the size of the gaps between my widgets(top and bottom.)

    Thanks for any help! ??

    NSFW:

    My site is : https://akarafang.com/

    [ Please do not bump, that’s not permitted here. ]

Viewing 3 replies - 1 through 3 (of 3 total)
  • If you want to reduce gap between widgets you can play with height and margin as follow:

    #primary .widget-footer, #primary ul li .widget-footer,
    #secondary .widget-footer, #secondary ul li .widget-footer {
    height: 10px;
    margin: 0 0 10px;
    }

    set height to 0px.
    set margin to 0px.

    margins are specified as follow:
    top right bottom left (0 0 10px 0) //left margin is not specified so it will inherited from right (which is 0).

    ================================================

    if you wish to reduce gap between menu and widget, it’s here:

    #header {
    height:750px; //original 800px
    }

    esmi

    (@esmi)

    What theme are you using? Where did you download it from?

    Thread Starter akara22

    (@akara22)

    Thanks, that worked!
    @esmi I am not sure, as I said before someone else made my site so I have no idea. lol

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Reduce gap between widgets(NSFW)’ is closed to new replies.