List Headline Image
Updated by Kelly Hungerford on Jun 07, 2018
Headline for Paper.li CSS Styling
 REPORT
49 items   63 followers   26 votes   16.62k views

Paper.li CSS Styling

If your paper has a custom domain you can modify your paper's CSS.

I've started this list to capture the most frequently requested style changes and the code.

Copy and paste into your paper's CSS editor and you're set.

2

/* Add a margin to the top of the page */

/* Add a margin to the top of the page */

.paper-window {
margin-top: 20px !important;
}

10

/*Add custom non-repeating, large background image*/

/*Add custom non-repeating, large background image*/

/* Contribution from publisher of http://dailyhemo.com */

body{
background-image: url("http://my_custom_background.jpg");

    background-position: center top;

    background-color: #3b3b3b;

    background-repeat: no-repeat;

  background-attachment: fixed;

}

35

/* Change font family and color of editor's name */

/* Change font family and color of editor's name */

.paper-editor-info .editor-details .editor-name a {
color: #4682b4 !important;
font-family: "Comic Sans MS";
}

37

/* Change font family and color of editor's note text */

/* Change font family and color of editor's note text */

.paper-editor-info .editor-note .editor-note-text {
color: #4682b4 !important;
font-family: "Comic Sans MS";
}

36

/* Change font family and color of editor's profile description */

/* Change font family and color of editor's profile description */

.paper-editor-info .editor-description {
color: #4682b4 !important;
font-family: "Comic Sans MS";
}

40

/* Change font of article titles */

/* Change font of article titles */

.cust-fs-at {
font-family: "Open Sans" !important;
}

43

/* Change font of Topic Menu bar */

/* Change font of Topic Menu bar */

/* Change font of Topic Menu bar */

.paper-navigation {
font-family: Georgia;
}

46

/* Change hover color of all article links*/

.cust-cs.cust-cs-hover a:hover {
color: #ffffff !important;
}

45

/* Change hover color of top article title*/

.cust-fs-at.cust-cs-hover a:hover {
color: #13b0d2 !important;
}

33

/* Change navigation bar link color */

/* Change navigation bar link color */

/* Change navigation bar link color */
.paper-navigation li>a {
color: red;
}

7

/* Change the background color of the paper's main section (where all the text is) */

/* Change the background color of the paper's main section (where all the text is) */

/* Change the background color of the paper's main section (where all the text is) */
.paper-window {background-color: #000;}
.paper-masthead .hero-unit, .navbar-paper .navbar-inner {background-color: transparent;}

6

/* Change the paper's text color */

/* Change the paper's text color */

/* Change the paper's text color */
.cust-cs a, .cust-fs-pg strong, .cust-fs-pg {color: #fff !important}

16

/* Change the paper subtitle color */

/* Change the paper subtitle color */

.paper-masthead .paper-info p {
color: #000000 !important;
}

49

/* Change the paper subtitle to left justified */

.paper-masthead .paper-info p {
text-align: left;
}

17

/* Change the paper title color */

/* Change the paper title color */

.paper-masthead .paper-info h1 {
color: #000000 !important;
}

48

/* Change the paper title to left justified */

.paper-masthead .paper-info h1 {
text-align: left;
}

30

/* Change the text & appearance on your paper's subscription (sign-up box) */

/* Change the text & appearance on your paper's subscription (sign-up box) */

/* Change your subscription box text and the text's appearance on your paper */

.subscribe-form h4 {
display: none;
}

.subscribe-form {
font-weight: bold;
font-size: 16px;
color: #000000;
}

.subscribe-form:before {
content: 'Enter your text here';
}

41

/* Customize background color of subscription box */

.paper-sidebar-body .paper-sidebar-block:nth-child(1) {
color: #dcdcdc; /* Main text color /
background-color: #000000; /
Box background color */
}

8

/* Disable auto-crop for article images.*/

/* Disable auto-crop for article images.*/

/* Note: Code will give warning but okay to use.*/
.article-image {
height: auto !important;
}

.article-image img {
top: 0 !important;
}

47

/* Edit the title font size (if size is not listed in paper settings) */

.paper-masthead .paper-info h1 {
font-size: 80px;
}

18

/* Featured article background color */

/* Featured article background color */

.lead-article .article-inner {
background-color: #000000;
}

3

/* Hide 'all stories' links at bottom of each section */

/* Hide 'all stories' links at bottom of each section */

/* This CSS is for hiding the 'All stories' links */

.section-more-link {
display: none;
}

32

/* Hide archives link */

/* Hide archives link */

/* Hide archives link */
ul.nav-paper-date li:nth-child(4) {
display: none;
}

31

/* Hide paper navigation menu (topics) */

/* Hide paper navigation menu (topics) */

/* Hide paper navigation menu (topics) */
.paper-navigation {
display: none;
}

5

Hide paper's banner

Hide paper's banner

This code hides the paper's banner, which can come in really handy when you customize your paper and don't want the banner to show, but you still want a banner to display in your newsletter.

/* Hide the banner */

.paper-banner {
display: none;
}