• Hello everyone
    Thank u in advance for your support.

    1)Plz how can I reverse the order and make social media icons on the left and the text on the right.

    2) how can i add a links menu but in one line not in widget or above each other. In the footer i mean

    Thank u

Viewing 1 replies (of 1 total)
  • Subrata Sarkar

    (@subrataemfluence)

    Go to Appearance > Editor. This will open your style.css in edit mode by default.

    Search for site-info

    @media screen and (min-width: 800px) {
    	.site-footer .site-info {
    		float: left;
    	}
    }

    change float:left; to float:right;

    Next search for footer-social-links. You will see this:

    @media screen and (min-width: 800px) {
    	.site-footer .footer-social-links {
    		float: right;
    		text-align: right;
    	}
    }

    change float:right; to float: left;

    I hope this will work. Let me know how this goes.

Viewing 1 replies (of 1 total)
  • The topic ‘Footer menu’ is closed to new replies.