How to rotate an image in reStructuredText? - restructuredtext

Is there an option to the command
.. image:: picture.png
like
:rot: 90degrees
Thank you in advance

No. But you could apply a custom class using class and use CSS to rotate the image.

Related

Cannot make background image from within the file to display on dive in TailwindCSS

I am trying to display a specific background image on a div in style or class by using Tailwind CSS but the image in not appearing. I cannot put it as a image since i want it to repeat throughout the div.
`
<div style="background-image: url('/wave.svg');" class="block bg-repeat-x bg-contain bg-center" >
**code**
</div>
`
I have tried to put the url as "../public.wave.svg" but the terminal outputs:
files in the public directory are served at the root path.
Instead of /public/wave.svg, use /wave.svg.
I have also tried it within a class in the div but cannot seem to find the problem to why my image is not showing up. When i put it as a img src it appears but i cannot manipulate it like that.
if you want to find here that simple real problem...
first go tailwind 'output.css' and add here a standart css class like '.addtest{}' with include your background.svg !
add it to your div, and is it works ?
is it don't work ? (find your real problem..)
ok, is it solved for standart css ?
now go and and take that css to your inner tailwind css or direct inline-css to html with 'style'.
are you try "./folder/image.svg"
not "../folder/image.svg"
not "/folder/image.svg"

Change icon througth css

I used liqour-tree and need to change arrow icon with the custom one, i don't know how to do that please help!
I found that element tag where that icon is placed
<i class="tree-arrow expanded has-child ltr"></i>
Here is my fiddle:
https://jsfiddle.net/Torus456/9ko65yeb/11/
How change style on used cdn?
This element has .tree-arrow.has-child:after and .tree-arrow.expanded.has-child:after.
You have to overwrite this.

How can I use my own image as prev/next arrow in slick.js?

This is what I have right now :
JSFiddle : when I use font-awesome
JSFiddle_2 : when I tried use image background
Currently, I use font-awesome for the arrows, and now I want to load my own icon instead.
I tried this, but no luck:
I've been struggling for quite a while now. I hope someone can help me resolve this.
Thanks in advance.
Basically all you need to do is change the content property of the pseudo elements to the appropriate image url(s).
.slick-next:before {
content:url(http://lorempixel.com/20/20/);
}
.slick-prev:before {
content:url(http://lorempixel.com/20/20/);
}
JSFiddle Demo

How to override stylesheets - Joomla

I'm struggling with a property that is defined in 3 stylesheets:
Joomla.css
My Site's Template.css
Content extension using K2.css
The problem is that I need to align a toolbar to the right. The property text-align is correctly defined in the K2.css but is ignored and rather the one in the joomla.css is loaded.
I attached a screen shot that shows the issue.
Any idea what am i doing wrong and how could I override this property just for one container?
Thanks in advance.
Eyal
For such special cases I used to define an style with !important and use it where ever I have to override.
CSS
.text-align_right {
text-align: right !important;
}
HTML
<div class="itemToolbar text-align_right">
..
Also, if you view the source of the page, you'll see the order in which the style sheets get added. Evidently joomla.css is further down the source than k2.css
If there are a large number of these cases, you might like to edit your template html and put joomla.css right at the start of the head section. If that is added dynamically, though, look at the nonumber extension 'Rereplacer' which should be able to switch the order around with a bit of work.
Add your css rule to the bottom of K2.css
When you create the menu in your module manager, assign it a class. Then you can set the style for that class in your template.css file.
Best,
Cynthia

How to style links via textile?

Is it possible to apply style attribute or class to link in textile? I've tried to find a reference, but found nothing.
"{color:red}This is a testlink":http://www.google.com
or
"(myclass)This is a testlink":http://www.google.com

Resources