06.05.2018, 17:13
(This post was last modified: 06.05.2018, 19:23 by Erwin van der Zwart.)
Hi,
Please post your questions in English so all members can follow it..
Bedankt!
Answer:
Because your scheduler is running in a iframe you can't use custom css, but what you can do i fetch the iframe with custom JS and perform some css modifications from there like this:
BR,
Erwin
Please post your questions in English so all members can follow it..
Bedankt!
Answer:
Because your scheduler is running in a iframe you can't use custom css, but what you can do i fetch the iframe with custom JS and perform some css modifications from there like this:
Code:
$(function(){
$(document).ready(function() {
var f= $('iframe');
f.load(function(){
f.contents().find('.schedulers').css("cssText", "font-size: 18px !important;");
});
});
});
Erwin