johnycage198624 / html5slides

Automatically exported from code.google.com/p/html5slides
0 stars 0 forks source link

Change Google logo in bottom-right corner? #13

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Hi,

I love this HTML5 presentation template and would like to use it, both for an 
actual presentation but also to improve my on-hands HTML 5 experience.

Is someone able to tell me where the Google logo in the bottom-right corner is 
referenced? I want to change it into something else, but am not able to find it 
in the main HTML file (or slides.js, although I didn't expect it there).

Thanks for your help.

Original issue reported on code.google.com by martijnv...@gmail.com on 4 Aug 2011 at 1:46

GoogleCodeExporter commented 8 years ago
just to clarify: the logo is set inside a postloaded CSS file (see function 
addGeneralStyle). I think it's pretty easy (though not exactly wanted by the 
authors I guess;) ) to down those dependencies, change them and store them 
along with your presentation. Another idea I currently have to add a micro JS 
framework, wait for loadCompleted, search the DOM for #article and 
.setStyle("background-image:none;"). But I just don't want to take the effort :D

Original comment by stadolf on 22 Aug 2011 at 9:39

GoogleCodeExporter commented 8 years ago
Doh, just noted my own typo in the style area. To get rid of the Google logo on 
the slides' background, add this to the <style> area at the top:

 .slides article   { background-image:none !important; background-color:white;}

or add a nice image you like there...

Original comment by stadolf on 22 Aug 2011 at 10:02