How can I show categories in a column to the right and search box as you have done on this demo page?

4.13K viewsGeneral
0

I am unable to make this work

Excuse me, are you using AnswerBox theme?

No, I am using the AnsPress plugin only

what’s your theme? can you give us an screenshot and update your question, please?

1

For adding search box, you need to add following codes in your themes header.php after page-title (you can use it in every where):

<div class=”change and use your search-form class in your theme”>
    <?php get_search_form( ); ?>
</div>

example:

<header class=”entry-header”>
   <h1 class=”entry-title”><?php the_title(); ?></h1>

   <div class=”change and use your search-form class in your theme”>
   <?php get_search_form( ); ?>
   </dive>

</header>

GOOD LUCK!

Please insert codes from syntax highlighter button from editor. Thanks

sorry, I tried it but can’t use it, After “add” no effecting was happen. please guide me.