Can I flip the tagline and site name?

  • Unknown's avatar

    Hi – I want to put the tagline above the site name on my blog. I know I can’t do that in my current, free version of WordPress. Is it possible to do it if I upgrade so I can do CSS?

    TIA

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, yes, this can be done with the following custom CSS. The one thing I will mention is that for Internet Explorer, version 9 and earlier do not support this custom CSS, so anyone on 9 or earlier will not see this change.

    .site-branding {
    	display: flex;
    	display: -webkit-box;
    	display: -moz-box;
    	display: -ms-flexbox;
    	display: -webkit-flex;
    	-webkit-flex-direction: column;
    	-moz-flex-direction: column;
    	-ms-flex-direction: column;
    	flex-direction: column;
    	-webkit-box-orient: vertical;
    	-moz-box-orient: vertical;
    	-ms-box-orient: vertical;
    	box-orient: vertical;
    }
    .site-description {
    	-webkit-box-ordinal-group: 1;
    	-moz-box-ordinal-group: 1;
    	-ms-flex-order: 1;
    	-webkit-order: 1;
    	order: 1;
    }
    .site-title {
    	-webkit-box-ordinal-group: 2;
    	-moz-box-ordinal-group: 2;
    	-ms-flex-order: 2;
    	-webkit-order: 2;
    	order: 2;
    }
  • Unknown's avatar
  • Unknown's avatar
  • The topic ‘Can I flip the tagline and site name?’ is closed to new replies.