hi, i was just wondering if you know how to make the tags look reversed on the theme? like for example, i tag something as "supernatural" but it appears as " larutanrepus" on the blog. thank you!
hello there - there are a few ways you could do this ( though bear in mind, your tags help your followers navigate your page and find certain posts, so making them tricky to read could be a little confusing… ) anywhoo… onto the ‘how;
1. use transform to create a ‘mirror’ reverse div.
in your tags css section just add the following code -
-moz-transform: scale(-1, 1);-webkit-transform: scale(-1, 1);-o-transform: scale(-1, 1);-ms-transform: scale(-1, 1);transform: scale(-1, 1);
that will ‘flip’ everything as if it was a mirror image - though all of your tags will be back to front, rather than just written in reverse.
you could also use -
-webkit-transform:rotateY(180deg); -moz-transform:rotateY(180deg);-o-transform:rotateY(180deg);-ms-transform:rotateY(180deg);
with pretty much the same effect
2. use html to reverse the text direction
you can use ‘rtl’ (right to left) rather than the standard left to right to reverse the text direction while keeping the letters the correct way round. drop this into your css for your tags section -
direction: rtl; unicode-bidi: bidi-override;
or use it in your html -
text here
3. use xkit to set yourself some easy to use tags -
install ‘new xkit’ on your browser and download the ‘quick tags’ option. you can preset your text in a tag bundle to be used on a single click!
there are probably other ways to do this, but those are the most straight forward!hope this helps!












