Adding text above menu, right aligned from title

  • Unknown's avatar

    Hi there, can you please let me know the CSS for putting this
    Black Isle Cares Charity Number SCO45371
    right aligned from my logo and title, above the menu, in a size 12 font size.
    The site is: https://blackislecaresblog.wordpress.com/
    Thanks

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

  • Unknown's avatar

    Hi there, this isn’t what you were asking for, but due to the design of the header area, what you are asking is a real challenge. Could you give the following a try and see what you think? It puts the text underneath the site title instead and works on all screen/window widths.

    .site-title:after {
    	content: "Black Isle Cares Charity Number SCO45371";
    	display: block;
    	float: right important;
    	font-size: 12px;
    }
    @media screen and (min-width: 900px) {
    	.site-title:after {
    		float: none;
    		position: initial;
    		display: block;
    	}
    }

    Let me know what you think, and if you still want the text to the right of the site title, I can see what I can do, but it will take some a good bit to get it to work on all screen/window widths.

  • The topic ‘Adding text above menu, right aligned from title’ is closed to new replies.