Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter dkdivedude

    (@dkdivedude)

    I don’t think so, see my custom CSS in its entirety;

    .title-post.entry-title {font-size: 1.5rem !important;}
    h1.wp-block-heading {font-size: 1.5rem !important;}
    h2.wp-block-heading {font-size: 1.4rem !important;}
    h3.wp-block-heading {font-size: 1.3rem !important;}
    h4.wp-block-heading {font-size: 1.2rem !important;}
    h5.wp-block-heading {font-size: 1.1rem !important;}
    h6.wp-block-heading {font-size: 1.05rem !important;}

    li {margin 0 !important; padding: 0 !important}

    .tag-cloud-link {margin:0 !important; padding: 0 !important;}

    .comment-respond {
    background-color: #000040;}

    Thread Starter dkdivedude

    (@dkdivedude)

    Changing the header font size on Appearance -> Customize -> Typography -> Headings page does absolutely nothing!

    The following link is an example of a post from my website; https://dkdivedude.com/2026/01/01/review-joyo-d-seed-ii/

    I had to resort to custom CSS to set header font sizes;

    h1.wp-block-heading {font-size: 1.5rem !important;}
    h2.wp-block-heading {font-size: 1.4rem !important;}
    h3.wp-block-heading {font-size: 1.3rem !important;}
    h4.wp-block-heading {font-size: 1.2rem !important;}
    h5.wp-block-heading {font-size: 1.1rem !important;}
    h6.wp-block-heading {font-size: 1.05rem !important;}

    Thread Starter dkdivedude

    (@dkdivedude)

    Ok that worked thanks.

    No I need to know how to change “normal” header font sizes, for a post page, like H1 to G6/

    I see adjustment to font size can be made under Customize -> Typography, however nothing changes when I change any font size for H1 through H6.

    • This reply was modified 5 months ago by dkdivedude.
    Thread Starter dkdivedude

    (@dkdivedude)

    Found the following from another post, about adding pages that contains categories;

    By default WordPress has category support for posts (not for pages). If you want support for categories on pages you have to look for another plugin that support it or add this code to your functions.php file in your theme or child-theme

    function support_category_for_pages() {  
        // Add category support to pages
        register_taxonomy_for_object_type('category', 'page');  
    }
    add_action( 'init', 'support_category_for_pages' );
    Thread Starter dkdivedude

    (@dkdivedude)

    Ok I may just have answered by own question, as I now remember I did not actually create any “pages” but instead “categories”.

    Well I do have one page, an “About” page. The link shows on my homepage, but it is not indexed by Google.

    Also is there a way to create pages, that each will only show a particular category?

    • This reply was modified 6 years, 7 months ago by dkdivedude.
    Thread Starter dkdivedude

    (@dkdivedude)

    Never mind. I figured it out by using “Categories” and then adding those to a menu, instead of adding “Pages”, and then when posting making sure a “Category” is selected.

    Thread Starter dkdivedude

    (@dkdivedude)

    To be more specific of what I need, is that posts go to the page(menu) I specify, and all posts is shown on my homepage.

Viewing 7 replies - 1 through 7 (of 7 total)