• Closed
  • Spiros Doikas
    Spectator
    December 15, 2013 at 6:28 pm #8187

    Edit: I found the Pages: bit. It was hardcoded in wp-includes/post-template.php. The only issue remaining is to get rid of extra white space.

    Code:
    function wp_link_pages( $args = ” ) {
    $defaults = array(
    ‘before’ => ‘<p>’ . __( ‘Pages:’ ),
    ‘after’ => ‘</p>’,
    ‘link_before’ => ”,
    ‘link_after’ => ”,
    ‘next_or_number’ => ‘number’,
    ‘separator’ => ‘ ‘,
    ‘nextpagelink’ => __( ‘Next page’ ),
    ‘previouspagelink’ => __( ‘Previous page’ ),
    ‘pagelink’ => ‘%’,
    ‘echo’ => 1
    );

    I am referring to the result of

    Code:
    <!–nextpage–>

    I found one instance of “Pages” in PO file and it has been localized; however, seems like it is not the one here. Maybe something hardcoded?

    http://www.siderman.gr/ena-tragoudi-gia-ton-orfea/5/

    Also, is there a way to get rid of the extra white space and hr below the sharing buttons?

    uw2j.png

    Roman
    Spectator
    Posts: 3147
    December 16, 2013 at 5:25 pm #8757

    for the sharing buttons try this simple CSS code in the Custom CSS field:

    Code:
    .share-box {
    margin-bottom: 0;
    }
    Spiros Doikas
    Spectator
    Posts: 48
    December 16, 2013 at 6:22 pm #8766

    Thanks, but this is the white space I am talking about:

    http://www.siderman.gr/o-erotismos-stin-tehni/

    9ksm.png

    Roman
    Spectator
    Posts: 3147
    December 16, 2013 at 7:48 pm #8770
    Code:
    .related-posts {
    margin-bottom:0;
    }
    Spiros Doikas
    Spectator
    Posts: 48
    December 16, 2013 at 8:05 pm #8775

    Thanks, that removed the space up to the hr, but after the hr the space remained. Same space at bottom of home page http://www.siderman.gr/

    Roman
    Spectator
    Posts: 3147
    December 17, 2013 at 10:02 am #8780

    insert this yet in the Custom CSS field:

    Code:
    #main {padding-bottom:0;}
    Spiros Doikas
    Spectator
    Posts: 48
    December 17, 2013 at 11:27 am #8784

    Thanks, that further reduced it. Please check same URL now. What I would want is to have all the space from the hr down removed (including the hr).

    Roman
    Spectator
    Posts: 3147
    December 17, 2013 at 2:14 pm #8789

    you can try this yet, same in Custom CSS, but not sure if it will work:

    Code:
    .post:last-child {
    border-bottom: 0;
    margin-bottom:0;
    padding-bottom: 0;
    }
    Spiros Doikas
    Spectator
    Posts: 48
    December 17, 2013 at 5:02 pm #8792

    Oh yes, that did it. I gave it a bit of breathing space:

    Code:
    .post:last-child {
    border-bottom: 0;
    margin-bottom:7;
    padding-bottom: 0;
    }