06.05.2018, 21:14
(06.05.2018, 17:13)Erwin van der Zwart Wrote: 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,Code:$(function(){
$(document).ready(function() {
var f= $('iframe');
f.load(function(){
f.contents().find('.schedulers').css("cssText", "font-size: 18px !important;");
});
});
});
Erwin
Hallo
Do I have to copy this code in Custom JavaScript?
How do I get the letters and numbers larger in CSS?
Sjef