Julia Yaziji
posted this on Feb 27 17:51
Hi Pro user!
We've just launched some minor changes to Paper.li and although we've done our best to ensure that the impact to your paper was minimal, it is possible that some of our changes have impacted your custom CSS.
If your current CSS isn't rendering properly please have a look at the below rules to see if any of these are included in your customizations. If so, copy, customize and save the new CSS in your editor.
You have until April 4th to make changes to your CSS and switch over to the new look and feel. Any papers that have not been switched to the new look and feel by April 4th will be automatically switched over on that date.
You can view a complete list of custom CSS here.
If you've made the changes and see that your paper is still not rendering correctly, drop us an email at [email protected] and we'll help you find a solution.
CSS to be updated: if you have the below rules in your paper, please update them with the below
/* paper title color */
.paper-masthead .paper-info h1 {
color: #000000 !important;
}
/* Control the paper subtitle color */
.paper-masthead .paper-info p {
color: #000000 !important;
}
/* featured article background color */
.lead-article .article-inner {
background-color: #000000;
}
/* Hide the Paper Title */
.paper-masthead .paper-info {
display:none;
}
/* Change the background color of the paper's main section (where all the text is) */
.paper-window {background-color: #000;}
.paper-navigation {
background-color: #000;
border-bottom-color: #000;
}
Invalid rules: if you don't delete them, that's okay. They'll no longer be valid after you make the switch to the new look and feel.
/* Fixes issue: EDIT button hidden when you have a share bar installed*/
.paper-admin {
margin-top: 50px;
}
/* Hides home, topics drop down, photos, videos, shares and subs in nav bar */
.navbar-paper .nav {
display: none;
}
/* hide border from Navigation box at top of paper*/
.navbar-paper .navbar-inner {
border-width: 0;
box-shadow: none;
}
/* Hides left side navigation (Home, topics, videos bar)*/ #paper_navigation_menu { display: none; }
/* hides right side navigation (SHARE and SUBSCRIBE)icons*/
.navbar-paper .nav.nav-right-buttons {
display: none;
}
/* Hides topic menu item that opens drop down in nav bar */
.navbar-paper .nav .dropdown {
display: none;
}
/* Hide the subscription banners */
.subscribe-banner {
display: none;
}
/* Hides home, topics drop down, photos, videos, shares and subs in nav bar */
.navbar-paper .nav {
display: none;
}
/* Change border color of the box around the Nav menu ( changing the color ) if using the same color as bg color*/
.navbar-paper .navbar-inner {
border-color: #fff;
box-shadow: none;
}
/* Change border color of the box around the Nav menu ( changing the color to transparent)*/
.navbar-paper .navbar-inner {
border-color: transparent;
box-shadow: none;
}