开发者

Applying a font (a code) to all parts of a widget in css

开发者 https://www.devze.com 2022-12-07 17:34 出处:网络
I want to apply a piece of code (for example, a specific font) to all parts of a widget What selector or what should I call to be able to do this?

I want to apply a piece of code (for example, a specific font) to all parts of a widget What selector or what should I call to be able to do this?

In the following code snippet, the font is applied to the selectors and part of the comments, but when a new comment is registered in the comments section of the site, the previous font is displayed again for the new comment.

/* Widget post comments */
.elementor-element-3d8990cd .elementor-widget-post-comments{
    font-family:'IRANSansWeb_FaNum';
    
}
.elementor-element-3d8990cd .elementor-widget-post-comments{
    font-family:'IRANSansWeb_FaNum';
}

/* Wpdiscuz sort button active */
.wpd-thread-filter .wpdf-sortin开发者_运维知识库g .wpdiscuz-sort-button-active{
    font-family:'IRANSansWeb_FaNum';
}


You can use [attribute*=value] CSS Selector in this case.

/* Widget post comments */
div[class*="elementor-element-"] .elementor-widget-post-comments{
    font-family:'IRANSansWeb_FaNum'; 
}

/* Wpdiscuz sort button active */
.wpd-thread-filter .wpdf-sorting .wpdiscuz-sort-button-active{
    font-family:'IRANSansWeb_FaNum';
}

You can also add a specific common comment parent class with div if needed.


Actually, I want to put the css code in the css customization of the free wpDiscuz plugin for WordPress comments that will apply my desired font to all the WordPress comments and replies that are recorded and displayed by this plugin.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号