Tagged: 

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #668036

    Hi,
    I would like to move the search box in the section where the breadcrumbs are if at all possible to the right and move the breadcrumbs to the far left. I already managed to change the header php and get a search box right above the breadcrumbs but I was not able to change the position and color. Ultimately deleted that search box and installed a plugin for the time being.

    #669818

    Hey eltronis,

    Sorry for the late reply!

    Can you please post a screenshot showing the changes you would like to make and attach a temporary admin logins in private content field?
    You can upload your screenshots on imgur.com or Dropbox public folder and post the links here.

    Best regards,
    Yigit

    #676251

    Hello,

    Sorry for the late reply, I was out of the office.
    Here is the screenshot that you requested: http://imgur.com/a/KQfDe
    If you need anything else please don’t hesitate to contact me.

    #676409

    Hi,

    I added following code to Style.css file of your child theme

    .title_container .breadcrumb { 
    right: auto;
    }
    .title_container #search {
        float: right;
        margin-top: -40px;
    }

    and following code to functions.php file

    function av_move_search_tb(){
    ?>
     <script>
    jQuery(window).load(function(){
    jQuery("#main>#search").detach().appendTo('.title_container .container')
    });
     </script>
    <?php
    }
    add_action('wp_footer', 'av_move_search_tb');

    Please review your website now

    Best regards,
    Yigit

    #676415

    Thanks for the prompt reply.
    I have an issue withe the search box. You can’t write anything in it.

    #676421

    Hi!

    I adjusted CSS code a little. Please review your website now

    Best regards,
    Yigit

    #678066

    Thanks a lot. It works now!

    #678072

    Is there a way to change the color of the interior of the search box from #ba3737 to #e1635c?

    #678104

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .title_container input#s {
        background: #e1635c!important;
    }
    

    Best regards,
    Yigit

    #678126

    It worked by adding the code in the style.css file. Thanks again for the help.
    Have an awesome weekend!

    #678131

    Hi!

    You are welcome!
    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    You too have a great weekend!

    Cheers!
    Yigit

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Serch Box position’ is closed to new replies.