• Hello,
    I’m using quote collection at my sidebar but when the quote is displayed, the author of the quote is right below the quote itself, leaving no spacing in between reducing its readability. How can I add a line of space in between?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi..
    So I make do with CSS tools like “Yellow Pencil” or “Microthemer” .. Both WP plugins. The free versions are sufficient for such little things.
    Greeting!

    I just viewed the source code; the plugin uses styling hooks. Now, some of my other styles may cause different rendition, but you should be able to declare everything with CSS:

    
    /* --:[ Teatimonials Styles ]:-- */ 
    .quotescollection-quote p {
    	font-family: 'open script', sans-serif;
    	font-size: 1.15em;
    	margin-left: -30px;
    	margin-bottom: 5px;
    	padding: 0;
    	font-style: oblique;
    }
    
    blockquote .attribution .author {
    	font-family: dosis, sans-serif;
    	text-align: right;
    	color: #888;
    	font-size: .975em;
    	margin: 0;
    	padding: 0;
    }
    

    Here is my page using this plugin:
    https://pixelita.com/about-us/our-clients/

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Adding a line of space’ is closed to new replies.