dkdivedude
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Sydney] Adjusting Post’s Header Font SizesI 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;}Forum: Themes and Templates
In reply to: [Sydney] Adjusting Post’s Header Font SizesChanging 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;}Forum: Themes and Templates
In reply to: [Sydney] Changing Post Title Font SizeOk 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.
Forum: Fixing WordPress
In reply to: Only home page is index by GoogleFound 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' );Forum: Fixing WordPress
In reply to: Only home page is index by GoogleOk 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.
Forum: Fixing WordPress
In reply to: How make posts go to specific page (menu)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.
Forum: Fixing WordPress
In reply to: How make posts go to specific page (menu)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.