Home Bottom Quote Box

Homepage Community Forums Legacy Theme Support Home Bottom Quote Box

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #14509
    adam19
    Customer

      I’ve added a quote box like the one shown in the demo but there is no colour, quotation marks or arrow pointing down to the picture.

      Site location – http://www.s19-media.com/simplygem

      #14531
      Eric
      Customer

        It appears your css is missing some code. If you add this it will automatically work –

        .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;   
        }
        

        I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

      Viewing 2 posts - 1 through 2 (of 2 total)
      • You must be logged in to reply to this topic.