$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>css - I can not change the background-color value of wp: meta_value of content.xml|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

css - I can not change the background-color value of wp: meta_value of content.xml

matteradmin9PV0评论

I can not change the background-color value of <wp: meta_value>

I'm trying to change by css the value of background-color in the class that is automatically generated by the Visual Composer called:

vc_custom_1510991353768

with this:

.vc_custom_1510991353768 {
    background-color: #006e48 !important;
}

But, my styles.css of child theme does not recognize because it is owned by , according to the code referenced below:

<wp:postmeta>
    <wp:meta_key><![CDATA[_wpb_shortcodes_custom_css]]></wp:meta_key>
    <wp:meta_value><![CDATA[.vc_custom_1510991353768{background-color: #22355b !important;}]]></wp:meta_value>
</wp:postmeta>

I already try this (Custom colors for post rows based on post meta value ), but this dont work for me.

I need help, thanks in advance

EDIT:

I got it by following this: thanks guys

Post a comment

comment list (0)

  1. No comments so far