Bullet points not showing in wordpress

In the Additional CSS for your theme, add the CSS code for ‘list-style-type’ for unordered list. Something like: ul { list-style-type: circle; } Note that this will affect all unordered lists on your site. Take a look at this page for other options: https://www.w3schools.com/css/css_list.asp Added Note that your theme may be using additional CSS that … Read more

Remove the main title, but only from the main page

You can use home class in body tag to target homepage. Also avoid using !important for css. which is not a good practice. try the following css: body.home .woocommerce-products-header__title { display:none; } body.home .page-title { display:none; }

How enqueue CSS out of theme folder?

You can use content_url() to get a URL to the wp-content folder: add_action( ‘init’, function() { wp_enqueue_style( ‘my-tag’, content_url( ‘cssfile.css’ ) ); }); See https://developer.wordpress.org/reference/functions/content_url/

Remove / Disable default custom.css?ver=1.0.0

Here’s how you could use the wp_dequeue_style function in a WordPress hook to unenqueue the custom-css stylesheet: function wpsx411806_unenqueue_custom_css() { wp_dequeue_style( ‘custom-css’ ); } add_action( ‘wp_enqueue_scripts’, ‘wpsx411806_unenqueue_custom_css’ ); In this example, the wpsx411806_unenqueue_custom_css function uses the wp_dequeue_style function to unenqueue the custom-css stylesheet. The function is then registered as a callback for the wp_enqueue_scripts hook.

Insert a group block inside a list item

My solution is to use CSS to simulate numbers (or bullets) on a group (which is a <div>). So I first created groups within groups, and then I added CSS class on the topmost group: .numbered-list { counter-reset: item; } And for each item, the group has this class: .numbered-list-item { } .numbered-list-item:before { content: … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)