Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #27622
    Jonathan
    Member

    I would like to minmize the amount of white space above the beginning of a page. For an example at http://www.point-of-view.ca/marker-point-2/ I want the first line of text on the page to be at the same level as “Of Special Interest” on the side bar. I’ve looked around but can’t find out how to do this.

    Also how do I get rid of hyphenation on the entire site? I don’t want the text to be hyphenated at the end of the lines of text.

    thank you!

    #27661
    Sakin
    Keymaster

    @Jonathan: You can add the following css in “Appearance => Theme Options => Custom CSS” box to decrease the padding top

    .hentry, .no-results, #author-info, #disqus_thread, #content .error404 {
        padding-top: 15px;
    }

    You can add the following css in “Appearance => Theme Options => Custom CSS” box to remove the hyphenation

    #content article {
    	word-wrap: normal;
    	-webkit-hyphens: none;
    	-moz-hyphens: none;
    	hyphens: none;	
    }
    #27755
    Jonathan
    Member

    Thanks for both sets of code. For the first one though it didn’t work. I input that code to the custom css but I still cant change the amount of white space at the top of my pages…

    #27818
    Sakin
    Keymaster

    @Jonathan: Sorry, replace the previous css with the following.

    .hentry, .no-results, #author-info, #disqus_thread, #content .error404 {
        padding-top: 0;
    }
    #27825
    Jonathan
    Member

    that works to make the text go all the way to the top. But I tried adjusting it a little putting the padding to 2 or 3 but then it stays the same it looked before. Is there something else I can add to be able to adjust this number?

    #27848
    Sakin
    Keymaster

    @Jonathan: For 2 it will be as below:

    .hentry, .no-results, #author-info, #disqus_thread, #content .error404 {
        padding-top: 2px;
    }
    #27855
    Jonathan
    Member

    Great thank you!

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘White space above post’ is closed to new replies.