Viewing 5 replies - 1 through 5 (of 5 total)
  • we would need a link to your site or be able to see your stylesheet somehow.

    Thread Starter GabeJacobs

    (@gabejacobs)

    appleintellect.com

    I would like to change the font in the style sheet

    you have these two sections in your style sheet controlling your block quotes

    pre, blockquote 
    
    {
    
    	overflow: auto;
    
    	padding: 0 10px;
    
    	margin: 20px 30px;
    
    	line-height: 1.8em;
    
    	background-color: #FDF5E6;
    
    	border: 1px solid #e0e0e0;
    
    }
    
    pre:hover, blockquote:hover
    
    {
    
    	background-color: #FDF5E6;
    
    	border: 1px solid #d0d0d0;
    
    }
    Thread Starter GabeJacobs

    (@gabejacobs)

    yes I found that out, but where in there do I change the font color in the blockquote

    youll have to add it in. something like
    color: #d0d0d0;
    it would look like this

    pre, blockquote 
    
    {
            color: #d0d0d0;
    
    	overflow: auto;
    
    	padding: 0 10px;
    
    	margin: 20px 30px;
    
    	line-height: 1.8em;
    
    	background-color: #FDF5E6;
    
    	border: 1px solid #e0e0e0;
    
    }

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Where in Style sheet is blockquotes’ is closed to new replies.