• Resolved mypapercrane

    (@mypapercrane)


    I’m having some trouble with my blog since my last update of the theme. My blog is cutting off after 3-4 blog entries, and if I refresh the page it will cut off in a different random spot. So you are not able to scroll down to the page navigation to go back and see older entries.

    Here’s my blog so you can see what I mean.

    I did some googling and I saw some info about changing the height, but I am not the best with css and am still learning as I go. The mantra theme does have a section where I can add custom css which will overide the mantra settings, but I’m not sure what the css code should say exactly to fix this. I appreciate any help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • If you look at the code, this is your content area:

    <div style="height: 2804px;" id="content" role="main">

    You’re theme is specifying a height.

    There’s 2 things you can do – either remove the style attribute from the div, or add this to your custom CSS:

    #content {
    	height: auto !important;
    	}

    Lemme know how that works out for you…

    Cheers,

    –Jon.

    Thread Starter mypapercrane

    (@mypapercrane)

    Jon, thank you so very much! That fixed it!
    I entered the custom CSS because I am always wary of changing the code incase it updates again. No idea if that matters or would make a difference haha, but I cannot thank you enough for the help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘blog cutting off in the middle of 3 or 4th entry’ is closed to new replies.