Forum Discussion
Increase the Size of the Logo on the Cover Page
- 2 years ago
Good news, everyone! Now in Rise 360, you can crop your logo to decrease white space and increase its size to customize your cover page branding.
Have a look at these logo enhancements under Theme > Cover Page, and let us know if you have any questions!
I think the logo actually stays the same size on all devices. You can change the size (after exporting the course) by editing css file if you are comfortable doing that. You just need to tweak what is already there for .overview__logo>img
to include a width and height value. I do this to have our logo display at the size I upload (174x140px). You might want to experiment with different sizes to see what suits your logo. Here is the code I use:
.overview__logo>img {
display: block;
height: 140px;
width: 174px;
}
Stuart - where do I find the CSS to edit the logo size? Thanks in anticipation.