Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
3550
Css override
posted

This is a general css question.

I apply to the body of the page, an external css file, wich defines the font.

It seems that ig_texteditor.css overrides my file.

I want the definitions of my file, to override, those of ig_texteditor.css

I dont want to add the !important note for the body definitinos, because it will override definitions in my css for other classes,

that I created.

Parents
  • 13438
    Verified Answer
    posted

    Hello drpoalim,

    The class responsingle for the way texteditor looks is igte_Edit. You can overwrite this class in your custom css file like:


    <style type="text/css">

        .head,.body,.form

        {

            font-size:xx-large;       

            }

            .igte_Edit

            { font-size:xx-large;}

           

           

        </style>


    Basically you can overwrite all our classes responsible for the stylings but take a note that when you do that the controls could experience misalignment in different browsers and versions because they are tested only with the default styles created for our controls from our visual designers. Please take a note that overriding this class will be applied for all the texteditors on the page on which the css file is refered.

Reply Children
No Data