Fix Divi Post Content Width
/*set the width of the rows inside the Post Content module*/ .et-db #et-boc .et-l .et-l–post .et_builder_inner_content .et_pb_row { width: 100%; }Continue reading
Join 2,000,000+ Professionals who use WPCode to Future-Proof Their Websites!
/*set the width of the rows inside the Post Content module*/ .et-db #et-boc .et-l .et-l–post .et_builder_inner_content .et_pb_row { width: 100%; }Continue reading
.et_pb_menu ul.sub-menu { width: 300px; /* Adjust this value to your desired width */ } /* Optional: Adjust width of individual list items and links within the dropdown */ .et_pb_menu ul.sub-menu li { width: 100%; /* Ensures list items take…Continue reading
// Add custom styles function add_custom_style_normalize() { wp_register_style( ‘the-new-normal’, ‘https://github.com/sarahschopick/the-new-normal.css/blob/1f917841c3a1382d644952dcaefb67e947467e22/the-new-normal.css’, array(), ‘1.0.0’ ); wp_enqueue_style( ‘the-new-normal’ ); } add_action( ‘wp_enqueue_scripts’, ‘add_custom_style_normalize’ );Continue reading
/** * Class that handles wholesale price HTML generation and display. * * @since 1.0.0 */ class WWP_Wholesale_Price_HTML_Handler { /** * Model that houses the logic of retrieving information relating to wholesale role/s of a user. * * @since 1.5.0…Continue reading