Atozed Forums

Full Version: connect css file to IWImage
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how can i connect the css file to the IWImage

how the IW will generate the connection between the css file and the image - by name? by id?
Check our demos, there are several examples of linking to an external CSS file.
(07-13-2020, 06:27 PM)kudzu Wrote: [ -> ]Check our demos, there are several examples of linking to an external CSS file.
can yo direct me please to the one you mean. i didn't find any.
all with stylesheet

al i want is the image will have :

css style with :

CompCover {
  opacity: 0.5;
}

when the CompCover  is the name of the image,
Download the demos, search for *.css and see which folder its in. That will find it quickly.
(07-13-2020, 08:59 AM)mazluta Wrote: [ -> ]how can i connect the css file to the IWImage

how the IW will generate the connection between the css file and the image - by name? by id?


Each IntraWeb control has a property named CSS. CSS receives the class name used in any external style, if applicable.

You can create a style for your class in your CSS file and use it in your IWImage control. Example:

< style.css file >
.myimageclass {

}


< in your pascal file >

IWImage.Css := 'myimageclass';


Add the css file to your form using ExtraHeader property of your form:

<link href="/style.css" rel="stylesheet">

and then copy the style.css file to the application's wwwroot folder. That's all.
thanks. that better.
where can i find full up-to-date documentation?