• Hi

    I had someone create my WP blog but they are AWOL and a couple of things I am trying to fix. My blog is below

    http://tinyurl.com/cr46dh

    First, the title header is WELCOME TO THE BLOG, this defults in bold. How do I remove this in the code?

    Second, my body text within control panel, wont allow me to create paragraphs, even if i use the <p> tag. In control panel it is correctly spaced, but the blog has been setup as to not consider these for some reason. Does anyone know how I can change this?

    Mant thx all

Viewing 2 replies - 1 through 2 (of 2 total)
  • It’s a CSS issue.

    Look for:

    p {
    
      /*margin: 10px; */
      font-size: 13px;
      line-height: 1.25em;
    
    }

    and change to:

    p {
    
      font-size: small;
      margin:0px 0px 15px 0px;
    
    }

    Then look for:

    h3 {
    	font-size: 33px;
    	line-height: 1.25em;
    	font-weight: bold;
    	font-family: Georgia;
    }

    and change to:

    h3 {
    	font-size: 33px;
    	line-height: 1.25em;
    	font-family: Georgia;
    }
    Thread Starter stag

    (@stag)

    Thanks – Were would the CSS file be located?

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

The topic ‘Removing Bold from Title and Paragraph issue’ is closed to new replies.