Forum Discussion
JohnCurran
8 years agoCommunity Member
Increase the Size of the Logo on the Cover Page
Rise seems to insert the logo at a fixed size on the cover page. Is it possible to make it larger? It appears quite small even on smartphones.
- 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!
StuartMarshall-
Community Member
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;
}
ShailendraKu342
6 years agoCommunity Member
Thanks!