Does anyone have any experience accessing and editing the img element(class that determines how images are displayed). I can find the class when editing each individual topic(.htm) file but i have no idea where to find the general class in Flare itself.
What i basically want to do is create/edit a global img class that determines the properties for all images across the entire flare project.
Any help is appreciated!
// Oliver
accessing the "img" class?
-
Oliver Shin
- Jr. Propeller Head
- Posts: 1
- Joined: Wed Aug 28, 2013 4:18 am
-
Nita Beck
- Senior Propellus Maximus
- Posts: 3672
- Joined: Thu Feb 02, 2006 9:57 am
- Location: Pittsford, NY
Re: accessing the "img" class?
Oliver, style classes, including the img class, are in the CSS file. In the Content Explorer, look in Resources/Stylesheets. You can edit the stylesheet using Flare's Stylesheet Editor or the Internal Text Editor or any text editor for that matter.
Nita

RETIRED, but still fond of all the Flare friends I've made. See you around now and then!
RETIRED, but still fond of all the Flare friends I've made. See you around now and then!
-
DocuWil
- Sr. Propeller Head
- Posts: 344
- Joined: Thu Feb 09, 2006 1:22 am
- Location: Netherlands
- Contact:
Re: accessing the "img" class?
I use it a lot and created a bunch of classes.
In this way I can change the size of an image very quickly.
Example:
In this way I can change the size of an image very quickly.
Example:
Code: Select all
img._h65mm
{
height: 65mm;
width: auto;
}
img._h70mm
{
width: auto;
height: 70mm;
}
img._h80mm
{
width: auto;
height: 80mm;
}
img._h60mm
{
width: auto;
height: 60mm;
}
img._w100mm
{
width: 100mm;
height: auto;
}
img._w110mm
{
height: auto;
width: 110mm;
}Wil Veenstra
Documentation and Training Centre
Infologic Nederland
(Using Flare 11.1.2, Capture 7.0.0 and Mimic 7.0.0 in Windows 10 64-bit)
Documentation and Training Centre
Infologic Nederland
(Using Flare 11.1.2, Capture 7.0.0 and Mimic 7.0.0 in Windows 10 64-bit)