• Resolved IamPetard

    (@iampetard)


    Hey Nobita its me again!

    Can you tell me can I have more than 3 columns in one row of the footer?

    I would like to have 4, possibly 5 columns in one row.

    EXAMPLE

    Hope you can help out!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author nobita

    (@nobita)

    Hi IamPetard

    Please try below style rules.

    style.css line:755

    #ft div.widget-wrapper>ul>li:nth-child(3n+1){
    	clear:left;
    	margin-left:0;
    }

    change below

    /* Footer widget col4 settings start */
    @media screen and (min-width: 1024px) {
    	#ft div.widget-wrapper>ul>li{
    		width:22%;
    	}
    }
    @media screen and (min-width: 801px) {
    	#ft div.widget-wrapper>ul>li{
    		width:21%;
    	}
    }
    @media screen and (max-width: 800px) {
    	#ft div.widget-wrapper>ul>li{
    		width:20%;
    	}
    }
    
    #ft div.widget-wrapper>ul>li:nth-child(4n+1){
    	clear:left;
    	margin-left:0;
    }
    /* Footer widget col4 settings end */
    Thread Starter IamPetard

    (@iampetard)

    Excellent! Thanks a bunch <3

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘More footer widget columns’ is closed to new replies.