• Resolved kubegusa

    (@kubegusa)


    I have a twentyeleven child theme
    https://www.sparklynx.be/preview/demaeyer/

    When I upload an image to a page, and view the page, the image is there. But when I add text to the page, the text is not there. I also tried adding text without image, still no text appears when viewing the page. There is text in the Home and About page at this moment. Only the image on the home page shows. There’s no image on the About page.

    I tested by removing all customized php files that I have, which didn’t change anything. So it must be something in my child style.css

    But I can’t find what the error is… Unless it’s yet another issue but then, I’d have no clue where to look. I searched the net for others with similar issues but couldn’t find the exact same symptom.

    This is all the code I added to my child style.css:

    https://pastebin.com/BxwwPZCR

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

    (@mar1965)

    Hi,

    In your css for body, you use the color #C7F0FB which is the same as the background color in the page css.

    body {
    	color: #C7F0FB;
    	background: url(images/bgrnd.jpg) no-repeat center center fixed;
    	-webkit-background-size: cover;
    	-moz-background-size: cover;
    	-o-background-size: cover;
    	background-size: cover;
    }
    #page {
    	margin-top: 0;
    	margin-bottom: 0;
    	background: #C7F0FB;
    	}
    Thread Starter kubegusa

    (@kubegusa)

    Duh!! Brilliant! Thank you SO much! I really appreciate you taking the time to look through my code. ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Page content: images appear but text does not’ is closed to new replies.