• Help: Rookie WordPress Programmer Needs Advice! Here is my new site in progress: https://www.vitamincommissions.com/health-affiliate-program/

    1. How can I delete the white font (from custom header) in front of the header image?

    2. How can I adjust the font lines’ height so that they don’t overlap?

    3. How can I widen the margin of the whole page so that the copy doesn’t run into the right side bar?

    Thank you very much,

    Greg

Viewing 3 replies - 1 through 3 (of 3 total)
  • edit style.css of the theme:
    1.
    add ‘text-indent’ to the first style and add a new line with the second style:

    #headerimg .description {
    	font-size: 1.2em;
    	text-align: center;
    text-indent:-9999px;
    	}
    
    #headerimg h1 {text-indent:-9999px;}

    2.
    add new line to style.css:

    strong span {line-height:1.5em;}

    3.
    edit width to 445px for instance:

    .narrowcolumn .entry, .widecolumn .entry {
    	line-height: 1.4em;
    width: 445px;
    }

    Thread Starter goodnews1

    (@goodnews1)

    Hi Alchymyth,

    I’m sorry for not replying earlier, but I just found time to make your changes. Thank you very much! Your first 2 changes worked, however the 3rd one didn’t because I communicated it wrongly. I want to increase/widen the line width on all pages. Do you (or does anyone else here) know how to do that?

    Thanks again,

    Greg

    still not too sure what you want:
    1.
    widen the whole page for more space ?
    that would involve quite a few changes, as the background for instance is an fixed width image, and because many of the divs would need changing in the css.

    or 2.
    move the content more to the left edge ?
    in style.css change the 45px in padding to 20px for instance:

    .narrowcolumn {
    	float: left;
    	padding: 0 0 20px 45px;
    	margin: 0px 0 0;
    	width: 450px;
    	}

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How Can I Delete Custom Header, Adjust Font Lines’ Height, and Widen Margin?’ is closed to new replies.