• Hi I’ve added contact details into the ‘Bottom 2’ footer and it’s currently sitting left-aligned and I’d like it to be center aligned. I have gone into the Style.css and attempted to add ‘text-align: center;’ but that doesn’t work.

    Any help would be greatly appreciated.

Viewing 1 replies (of 1 total)
  • HI there,

    You can refer to this below example:

    @media (min-width: 1200px) {
    	.row-fluid #bottom-group [class*="span"] {
    	    clear:both;
    	    width:100%;	
    	    text-align: center;
    	}
    }

    Note: Please add this custom css on child theme style.css or additonal css section of customizer. So your changes will not lost on theme update
    2. Later on if you try to build four column then this code won’t let you to keep perfect four column., In that case please remove this code.

    Thanks

Viewing 1 replies (of 1 total)
  • The topic ‘Center Align Footer (Bottom 2)’ is closed to new replies.