Reply To: Quote Boxes not working

Homepage Community Forums Legacy Theme Support Quote Boxes not working Reply To: Quote Boxes not working

#8007
Wes
Moderator

    The demo is version 1.3.1, which hasn’t been release just yet since I’m adding updates to it and a few other themes. You can still use it by adding this code to your css –

    .quote {
    	background: #fff;
    	border: 1px solid #ddd;
    	color: #888;
    	padding: 20px;
    }
    
    .quote-arrow {
    	background-image: url(images/quote-arrow.png);
    	background-position: center bottom;
    	background-repeat: no-repeat;
    	bottom: 1px;
    	display: block;
    	margin: 0 0 10px;
    	padding: 14px 0 0;
    	position: relative;
    }
    
    .quote-gray {
    	background: #eee;
    	border: 1px solid #ccc;
    	color: #333;
    	padding: 20px;
    }
    
    .quote-arrow-gray {
    	background-image: url(images/quote-arrow-gray.png);
    	background-position: center bottom;
    	background-repeat: no-repeat;
    	bottom: 1px;
    	display: block;
    	margin: 0 0 10px;
    	padding: 14px 0 0;
    	position: relative;
    }
    
    .quote-black {
    	background: #121212;
    	border: 1px solid #353535;
    	color: #fff;
    	padding: 20px;
    }
    
    .quote-arrow-black {
    	background-image: url(images/quote-arrow-black.png);
    	background-position: center bottom;
    	background-repeat: no-repeat;
    	bottom: 1px;
    	display: block;
    	margin: 0 0 10px;
    	padding: 14px 0 0;
    	position: relative;
    }
    
    .quote-black a {
    	color: #aaa;
    }
    
    .quote-black p {
    	color: #fff;
    }
    
    .quote strong {
        color: #333; 
        padding: 10px 0 0;   
    }