U8Qtu

UPDATED FOR CATALINA & SAFARI 13 (early 2020 Update) * PLEASE PLEASE — If you are having trouble, and really want to get help or help others by posting a comment about it, Post Your Browser and Device (MacBook/IPad/etc… with both browser and OS version numbers!) Claiming none of these work is not accurate (and actually not … Read more

HTML span align center not working?

A div is a block element, and will span the width of the container unless a width is set. A span is an inline element, and will have the width of the text inside it. Currently, you are trying to set align as a CSS property. Align is an attribute. However, the align attribute is … Read more

How to show tags in my tumblr theme?

Go to the Customize section after you log in Click on the Theme tab Click Use custom HTML This will bring up a edit box that contains the HTML and tumblr code used by the theme. Put the code for the tags somewhere between the opening {block:Posts} and closing {/block:Posts} tags. To start off easy, let’s put the tags at the bottom of all … Read more

Square brackets in CSS

It’s an attribute selector in CSS E[foo=”warning”] Matches any E element whose “foo” attribute value is exactly equal to “warning”. more on http://www.w3.org/TR/CSS2/selector.html