bobthemonster
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Loading a custom comment formAhh yes, good idea 🙂 Thanks.
Forum: Fixing WordPress
In reply to: Loading a custom comment formThanks for the reply.
Do you have any advice as to how to accomplish loading a different comment template as I am trying?
Forum: Fixing WordPress
In reply to: Want Comment Count per Post on Blog front pageUse:
<?php the_author_link(); ?>In place of:
<?php the_author(); ?>Forum: Fixing WordPress
In reply to: Make post titles thicker/bolder?On line 134 of your master.css change:
font-weight:normal;to:
font-weight:bold;Forum: Fixing WordPress
In reply to: Make post titles thicker/bolder?EDIT:
<strong></strong>Forum: Fixing WordPress
In reply to: Make post titles thicker/bolder?Have you tried applying the css attribute font-weight to your heading?
Try:
font-weight: 800;Alternatively you could add strong tags around your heading:
` <your heading />
Forum: Fixing WordPress
In reply to: Want Comment Count per Post on Blog front pageLook at the default theme at around line 23.
<?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?>Forum: Fixing WordPress
In reply to: Unable to uploadSounds like a file permission issue. See if the uploads folder is on the server, if it is set the permissions on that folder to 777 – if its not there create it with the permissions 777.
If this works, then it was the permissions, but you should now go back to that folder and tighten up the permissions on it as nothing should be 777 on your server unless its an absolute necessity.