Add name to quote
-
How would I add a second line of code to add a name to the bottom right of my quote on the bottom of the first page? this is what I am using to add the quote:
.home .front-page-widget-area::after {
content: ‘”This is a privileged position that I have, sharing so many heartwarming moments of laughter and tears with people working toward healing.”‘;
display: block;
padding-bottom: 50px;
text-align: center;
font-style: italic;
color: purple;
}Thanks!
The blog I need help with is: (visible only to logged in users)
-
Add this additional line to your CSS above:
white-space: pre;And change the content line to:
content: ""This is a privileged position that I have, sharing so many heartwarming moments of laughter and tears with people working toward healing. a Name"";
- The topic ‘Add name to quote’ is closed to new replies.