• Hello. I am new in WordPress. I have installed Google Calendar embed. I made a JQuery file because I want to customize the page. When five seconds are spent, I need to change several colors in the wep page. I have got partially, although I can’t customize the part of the Google Calendar, I feel like I haven’t any control of that part of the code.

    How can I do it?

    Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • If you are embedding from Google, you probably cannot change how it displays. However, this would be a question to ask on the sub-forum for whichever plugin you are using.

    Thread Starter Maco10

    (@maco10)

    I change the skin after five seconds, and the code is:

    $(document).ready(function(){
    
    	setTimeout(function() {
    		$('div.date-label').css({'background' : 'blue'});
    
    		$('h3.widget-title').css({'color' : 'olive'});
    	}, 3000);
    
    });

    The fist sentence doesn’t work, is an id from Google Calendar. The other runs perfect. Why can’t I customize it if I an running it in local?

    this would be a question to ask on the sub-forum for whichever plugin you are using.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘To customize google calendar embed’ is closed to new replies.