• Resolved Nunie Bratweiler

    (@nunie-bratweiler)


    Hey everyone,

    i’m using the Twentyten theme on a site. Everything works fine but when i was testing the comment section i found out that (after posting one comment) it was impossible to post another one. I just want to let the page get longer, when more comments are added.

    See examples:
    https://www.mintonline.be/anits/?page_id=65
    https://www.mintonline.be/anits/?page_id=45 (works fine when a page is short enough)

    The fields are still there (i checked it with Firebug) but no longer visible/useable.

    I already tried to stretch the wrapper, content, container, respond,…but nothing works. Placing the colophone lower didn’t work either.

    Does anyone have a clue to resolve this? Thanks in advance!

    Greetz from Belgium,
    PhiL

Viewing 5 replies - 1 through 5 (of 5 total)
  • Don’t edit the Twenty Ten theme! Your changes will be over-written the next time you upgrade WordPress or the theme. For this reason, it is recommended that you consider creating a child theme for your customisations.

    You need to start by turning your current theme into a new theme and then re-uploading a fresh copy of the original Twenty Ten theme.

    remove the height from #container –

    in style.css of you theme

    #container {
    	float: left;
    	margin: 0 -240px 0 0;
    	width: 100%;
    	height: 2000px;
    }

    or change it into min-height: 2000px; if the height is important.

    consider to make regular backup copies until your child theme is ready.

    Thread Starter Nunie Bratweiler

    (@nunie-bratweiler)

    Hey alchymyth,

    first of all, thanks for checking out my post.

    i tried both things (removing the height and/or using min-height). But nothing really changes. See https://www.mintonline.be/anits/?page_id=65 after the css update.

    Really strange. I’ve been looking at lots of different options with Firebug, but i can’t seem to find the problem. Grr. Frustrating, because i can see the fields with Firebug.

    you are right – i stopped too early without checking the whole css:

    there is another fixed height in style.css for #main:

    #main {
    	clear: both;
    	overflow: hidden;
    	padding: 20px 0 0 0;
    	height: 900px;
    
    }

    try and change it to min-height: 900px;

    Thread Starter Nunie Bratweiler

    (@nunie-bratweiler)

    Hey Alchymyth,

    you rock! I must have overlooked that #main section. It works fine now.

    Big thanks!

    Greetz,
    PhiL

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Comment fields not showing…but visible with Firebug’ is closed to new replies.