Title: frontend / css implementation
Last modified: August 31, 2016

---

# frontend / css implementation

 *  Resolved [reinoud26](https://wordpress.org/support/users/reinoud26/)
 * (@reinoud26)
 * [10 years ago](https://wordpress.org/support/topic/frontend-css-implementation/)
 * Hi ,
    Nice plugin we have it technically all working, but we don’t get the styling
   right
 * is all styling done in the style.css ?
 * or also in some parts of the application
 * if you want i can mail you a screenshot
    how it looks like right now
 * in the code i saw also there is an option
    to show when a doc was last updated
 * how do you activate that ?
 * thanks
 * reinoud
 * [https://wordpress.org/plugins/docu/](https://wordpress.org/plugins/docu/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [dinamiko](https://wordpress.org/support/users/dinamiko/)
 * (@dinamiko)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/frontend-css-implementation/#post-7452537)
 * Hi reinoud26, sorry for the delay,
 * all the plugin css styles are in docu/assets/css/frontend.css
 * about adding last updated time, you can use WordPress native the_content filter:
   
   [https://codex.wordpress.org/Plugin_API/Filter_Reference/the_content](https://codex.wordpress.org/Plugin_API/Filter_Reference/the_content)
   something like this will work, add this code to your theme functions.php
 *     ```
       function custom_docu_add_last_modified( $content ) {
       	global $post;
       	if( get_post_type( $post ) == 'doc' ) {
       		$output = '<p>Last modified: '. get_the_modified_date() . ' ' . get_the_modified_time() .'</p>';
       		return $content . $output;
       	} else {
       		return $content;
       	}
       }
       add_filter( 'the_content', 'custom_docu_add_last_modified' );
       ```
   
 * Thanks.

Viewing 1 replies (of 1 total)

The topic ‘frontend / css implementation’ is closed to new replies.

 * ![](https://ps.w.org/docu/assets/icon-256x256.png?rev=1076127)
 * [Docu](https://wordpress.org/plugins/docu/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/docu/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/docu/)
 * [Active Topics](https://wordpress.org/support/plugin/docu/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/docu/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/docu/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [dinamiko](https://wordpress.org/support/users/dinamiko/)
 * Last activity: [9 years, 11 months ago](https://wordpress.org/support/topic/frontend-css-implementation/#post-7452537)
 * Status: resolved