Veena

Forum Replies Created

Viewing 15 posts - 5,341 through 5,355 (of 5,360 total)
  • Author
    Posts
  • in reply to: How to insert "Search" into the theme #8694
    Veena
    Moderator

    Pls insert the following lines of code in header.php in line no:86

    <div class=”search-wrap”>
    <aside id=”search-4″ class=”widget widget_search widget-widget_search”>
    <div class=”widget-wrap widget-inside”>
    <div class=”search”>
    <form method=”get” id=”search-form” class=”search-form” action=”http://www.bs-nova.de/”&gt;
    <input type=”text” class=”search-text” name=”s” id=”s” placeholder=”Suche”>
    <input type=”submit” class=”submit” name=”submit” id=”searchsubmit” value=””>
    </form>
    </div>
    </div>
    </aside>
    </div>
    Pls remove the float right property of primary menu and add the following Custom CSS in themeoptions –
    .search-wrap {
    clear: both;
    display: inline-block;
    float: right
    }

    It should help the work.

    in reply to: Leave a comment area #8677
    Veena
    Moderator

    Pls change in ‘single-portfolio.php file’, not in custom CSS.
    Pls try and let us know.

    in reply to: Add user account links next to cart icon #8676
    Veena
    Moderator

    Pls give the link of your site as a private message so that i can suggest the required changes.

    in reply to: How to insert "Search" into the theme #8640
    Veena
    Moderator

    Pls try the following Custom CSS in Theme Options –

    #sidebar-header {
    position: relative;
    right: -80px;
    top: 30px;
    z-index: 1;
    }

    #site-logo a img {
    padding-top: 35px;
    }

    in reply to: Lost main slider after installation #8633
    Veena
    Moderator

    Pls go to “Revolution Slider” Option and there you can import the main slider zip file(agile-main-slider-export.zip) using the “Import slider” option.And also there you have the privilege to edit slider,delete,export and create slider template.

    in reply to: WooCommerce Cart #8611
    Veena
    Moderator

    Pls add the following custom CSS in themeoptions –

    .woocommerce-site .cart-contents {
    display: none;
    }

    in reply to: Top / Main menu style editing #8600
    Veena
    Moderator

    For changing menu’s font and padding you can add the following CSS into theme options

    #primary-menu {
    font-family: sans-serif;
    padding-top: 10px;
    }

    You can change accordingly.

    Could you please elaborate the first question so that i can understand and proceed.
    Thanks!

    in reply to: Rename Trainer #8341
    Veena
    Moderator

    Please use translation feature available in WordPress with en_US.po file. You can learn from http://www.solostream.com/blog/tutorials/translate-wordpress-theme/ about translating your site into your language. Pls make sure you add the entry for your language into wp-config.php file like this –

    	define ('WPLANG', 'fr_FR');   
    	

    The above code is for French transalation.
    Pls use the pot files in ‘fitpro/languages’ folder as a template to create .po files. http://www.poedit.net/ -Poedit is the popular free editor for creating .po and the corresponding binary .mo files.

    You may need to do an update in POEdit to see all the strings. Do reach out to us in case you find something that is not translation ready.

    in reply to: Change Portfolio Grid Thumbnail Size #8340
    Veena
    Moderator

    Please change the image_size parameter in loop-portfolio.php file. The list of possible values is listed in framework.php file(line no:142) – medium, large etc and also here you can change the width and height accordingly.

    in reply to: Turn off Lightbox on Portfolio issue #8339
    Veena
    Moderator

    You can use the following Custom CSS

    ul#showcase-items a.lightbox-link {
    display: none;
    }

    in reply to: Lorem ipsum-Text shown in a category #8332
    Veena
    Moderator

    In “pages” go to Blog->edit window and pls scroll down, then you can see ‘Custom Header Options’ there you can delete or change the content in ‘Custom Heading Content’ section.

    in reply to: Unable to reorder trainers or classes in Fitpro #8330
    Veena
    Moderator

    Pls add ‘orderby’ => ‘title’, ‘order’ => ‘DESC’ parameters to $query_args in files template-trainers.php(line no:16) and template-classes.php(line no:16).

    eg: $query_args = array(‘post_type’ => ‘fitness_class’, ‘posts_per_page’ => -1, ‘orderby’ => ‘title’, ‘order’ => ‘DESC’ );
    This will reorder classes in to descending order.

    in reply to: Shortcodes parameters #8329
    Veena
    Moderator

    Please refer to https://www.livemeshthemes.com/enigmatic/ website where shortcode parameters are documented.Pls import sample data(sample-data.xml) inorder to get further more clarity about shortcodes and its working.

    in reply to: Menu roll over effect on the top nav bar #8224
    Veena
    Moderator

    Menu roll over effect

    Pls add the following changes. line no:3481 style.css

    #primary-menu > ul.menu > li> a:hover
    {
    color:orangered;
    }

    And also if you want color change along with transition effect
    Pls do the below changes also.

    #primary-menu > ul.menu > li> a
    {
    transition:all 1s ease; // this is for an example you can change accordingly.
    }

    in reply to: Portfolio sort stopped working? #2287
    Veena
    Moderator
    This reply has been marked as private.
Viewing 15 posts - 5,341 through 5,355 (of 5,360 total)