How do I modify the CSS style of article blockquote?

  • Author
    Posts
  • #51546

    How do I modify the CSS style of article blockquote?

    smusic.cc

    Where is the modified location?

    /home/wwwroot/www.smusic.cc/wp-content/themes/anima/style.css

    /* ## BLOCKQUOTES */
    .entry-content blockquote {
    	display: table;
    	float: none;
    	clear: both;
    	position: relative;
    	width: auto;
    	margin: 0 auto;
    	padding: 2em 2em 2em 5em;
    	font-style: italic;
    	font-weight: 400;
    }
    
    .entry-content blockquote::before {
    	position: absolute;
    	top: 50%;
    	left: .5em;
    	z-index: 0;
    	font-size: 2em;
    	font-family: 'iconmeta';
    	-webkit-transform: translateY(-50%) rotate(180deg);
    	-ms-transform: translateY(-50%) rotate(180deg);
    	transform: translateY(-50%) rotate(180deg);

    Website: www.smusic.cc

    #51548

    Is there a change here? How to modify?

    Website: www.smusic.cc

    #51895
    Zed
    Cryout Creations mastermind

    What are you trying to do?


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #51927

    I want to change blockquote in the following of CSS style。

    http://i.imgur.com/Yg82IBe.png

    Website: www.smusic.cc

    #52858
    Zed
    Cryout Creations mastermind

    Apply your customized styling to
    body .entry-content blockquote { ... }
    and
    body .entry-content blockquote::before { ... }


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
Viewing 5 posts - 1 through 5 (of 5 total)

The topic ‘How do I modify the CSS style of article blockquote?’ is closed to new replies.