-
Posts
45 -
Joined
-
Last visited
Community Answers
-
rishachesterfield's post in Navigation color rollover on 7.1 was marked as the answer
This can currently only be adjusted with custom CSS. You can use the following code to change the background color:
.header-nav-folder-content{background-color: #f6cd37!important} Feel free to adjust the hex number to the color you need. My friends at Ghost Plugins also have more code you can add to change the navigation link colors in the folder.
-
rishachesterfield's post in Having a different homepage on mobile was marked as the answer
You can use code to hide a specific section on mobile:
@media screen and (max-width:640px) { section[data-section-id="65b2b0e8812f873bc43b9709"] { display: none; } } Of course, be sure to change the section ID out for the section ID on your site.