• Resolved Chitauri

    (@chitauri)


    How do I put the previous entry above at the current entry and not below?

    Here a screenshot of my page of the previous entry below of the current entry:

    https://img13.imageshack.us/img13/1808/p5pf.png

    What kind of CSS have I to add with the Simple Custom CSS pluguin?

    PD: Sorry for my bad English, I′m from Spain, I′m triying to improve.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author nobita

    (@nobita)

    Hi Chitauri

    How do I put the previous entry above at the current entry and not below?

    This customize needs template edit.

    open part.php line 51

    if( is_single( ) ) {
    
    		raindrops_prev_next_post( 'nav-below' );
    
    	}

    above code cut and paste line 21 raindrops_entry_title() before.

    ?>
    <?php
    	if( is_single( ) ) {
    
    		raindrops_prev_next_post( 'nav-below' );
    
    	}
    
    		raindrops_entry_title( );
    ?>

    Sorry for my bad English, I′m from Spain,

    I’m Japanese, same poor at English.

    An understanding is possible.

    Thank you.

    Thread Starter Chitauri

    (@chitauri)

    Nobita my part.php code is :

    <?php
    	if( is_single( ) ) {
    
    		raindrops_prev_next_post( 'nav-below' );
    
    	}
    
    	comments_template( '', true );
    ?>

    Can you mark me where can i add the changes in the code?. It′s a trouble for me find it.

    Theme Author nobita

    (@nobita)

    https://gist.github.com/tenman/6678806

    replace all of part.php

    Thread Starter Chitauri

    (@chitauri)

    It works Nobita, a lot of thanks my Japanese friend.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How do I put the previous entry above at the current entry and not below?’ is closed to new replies.