Custom After Entry Epik 1.4

Homepage Community Forums Epik Theme Support Custom After Entry Epik 1.4

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #15361
    Rhiguel
    Customer

      Hi!

      I am trying custom After Entry Single Post with Epik 1.4

      I copy the new code After Entry from a other blog with Epik 1.4.1:

      /* After Entry widget
      ——————————————— */

      .after-entry {
      background: #222;
      color: #aaa;
      margin: 60px 0;
      overflow: hidden;
      text-align: center;
      }

      .after-entry .wrap {
      padding: 40px;
      }

      .after-entry a {
      color: #fff;
      }

      .after-entry .widget-title,
      .after-entry h4 {
      color: #fff;
      font-size: 30px;
      }

      .after-entry h1,
      .after-entry h2,
      .after-entry h3,
      .after-entry h4,
      .after-entry h5,
      .after-entry h6 {
      color: #fff;
      font-weight: 400;
      }

      .after-entry .enews-widget input {
      width: 50%;
      }

      .after-entry .enews-widget input[type=”submit”] {
      width: auto;
      }

      Ok, now I go to functions.php and I add:

      //* Hooks after-entry widget area to single posts
      add_action( ‘genesis_after_entry’, ‘after_entry_widget’, 5 );
      function after_entry_widget() {

      if ( ! is_singular( ‘post’ ) )
      return;

      genesis_widget_area( ‘after-entry’, array(
      ‘before’ => ‘<div class=”after-entry widget-area”><div class=”wrap”>’,
      ‘after’ => ‘</div></div>’,
      ) );

      }

      However, the result is different 🙁

      Epik 1.4.1: http://cl.ly/image/0c2A0j031W24
      Epik 1.4 with the code After Entry Epik 1.4.1: http://cl.ly/image/3I3s2t0y0Z0y

      I want the Epik 1.4 like Epik 1.4.1

      Thank you so much!!!

      #15380
      Eric
      Customer

        I can figure out exactly whats going on with a link to your site. So if you have one you can post just let me know.

        You can add it privately by checking the Private Reply Checkbox if you need to.


        I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

        #15400
        Rhiguel
        Customer

          Thank you Eric, but I could fix it. The problem was function.php haha

          Thank you for your reply 🙂

        Viewing 3 posts - 1 through 3 (of 3 total)
        • The topic ‘Custom After Entry Epik 1.4’ is closed to new replies.