Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1208838

    Hi there !

    Could someone help me to apply this CSS to a specific page-id:
    (you can see it in the bottom of private link below)
    Thanks in advance.

    Iceman

    
    blockquote {
    	border: none;
        font-style:normal;
    	margin-top:30px;
      	margin-left:32px;
      	font-family:"Segoe Print", "Times New Roman", Verdana;
      	padding-left: 48px;
         background:url('https://mywebsite/wp-content/uploads/2020/01/quotation-marks.png');
        background-repeat: no-repeat;
    	background-size: 3%;
        text-indent: 23px; 
    } 
     
    blockquote cite {
        color: #a1a1a1;
        font-size: 14px;
        display: block;
        margin-top: 5px;
    }
      
    blockquote cite:before {
        content: "\2014 \2009";
    }
    
    
    • This topic was modified 4 years, 5 months ago by ICEMAN.
    #1208936

    Hey ICEMAN,

    Adjust your css to this:

    .postid-3760 blockquote {
    	border: none;
        font-style:normal;
    	margin-top:30px;
      	margin-left:32px;
      	font-family:"Segoe Print", "Times New Roman", Verdana;
      	padding-left: 48px;
         background:url('https://mywebsite/wp-content/uploads/2020/01/quotation-marks.png');
        background-repeat: no-repeat;
    	background-size: 3%;
        text-indent: 23px; 
    } 
     
    .postid-3760 blockquote cite {
        color: #a1a1a1;
        font-size: 14px;
        display: block;
        margin-top: 5px;
    }
      
    .postid-3760 blockquote cite:before {
        content: "\2014 \2009";
    }

    Best regards,
    Jordan Shannon

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