I want my Blog to look like the default Demo

This topic has 10 replies, 2 voices, and was last updated 6 years, 6 months ago ago by Rose Tyler

  • Avatar: LissiPeer
    LissiPeer
    Participant
    September 26, 2017 at 10:36

    Hi,

    i was fascinated by the default demo of the lifestyle theme and now im wondering how to set this up? I tried with the documentation, but i wasn’t successfull, could you please help me?

    Thank you and regards

    Lisa

    9 Answers
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    September 26, 2017 at 12:33

    Hello,

    Do you mean this page https://8theme.com/demo/lifestyle/blog/ ? Please see screenshot http://prntscr.com/gpv1bc

    Regards

    Avatar: LissiPeer
    LissiPeer
    Participant
    September 26, 2017 at 13:17

    Hi Rose thank you – I finished it thank you. But i have another question – the top bar, where i can switch currency or language – how is it possible to edit this? thank you so much

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    September 26, 2017 at 13:24

    To remove these icons go to Appearance > Widgets > add an empty Text widget to “Left Side top bar area” also you may use this area to display own information http://prntscr.com/gpvpkx.

    Regards

    Avatar: LissiPeer
    LissiPeer
    Participant
    September 26, 2017 at 14:46

    Thank you Rose, and how do i edit the look of the comment forms in single post pages? Thank you

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    September 26, 2017 at 15:02

    You’re welcome!
    This is default WordPress comment form, so there are no options to edit this form in theme.
    What exactly do you want to change?

    Regards

    Avatar: LissiPeer
    LissiPeer
    Participant
    September 26, 2017 at 15:07

    Thank you for your answer – i wanted the name and email field above the comment field.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    September 26, 2017 at 15:23

    Please read this doc https://codex.wordpress.org/Function_Reference/comment_form
    you may use this code in function.php file of your child theme:

    function etheme_move_comment_field_to_bottom( $fields ) {
      /**
      * Move comment field to bottom.
      */
      $comment_field = $fields['comment'];
      unset( $fields['comment'] );
      $fields['comment'] = $comment_field;
      return $fields;
    }
    add_filter( 'comment_form_fields', 'etheme_move_comment_field_to_bottom' );

    and add this css code in Theme Options > Styling > Custom css:

    .single-post .comment-respond .form-group[class*=comment]:first-child{padding-left:0px !important;}
    .single-post .comment-respond .form-group[class*=comment]:nth-child(2){padding-left:30px !important;}

    Regards

    Avatar: LissiPeer
    LissiPeer
    Participant
    September 26, 2017 at 15:34

    Thank you 🙂

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    September 26, 2017 at 15:47

    You’re welcome!

    Regards

  • Viewing 10 results - 1 through 10 (of 10 total)

You must be logged in to reply to this topic.Log in/Sign up

We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.