Forum Replies Created

Viewing 30 posts - 61,801 through 61,830 (of 67,109 total)
  • Author
    Posts
  • in reply to: Resizing the logo properly to fit #206115

    Hi vegaspro!

    Edit the code that you have a bit. Replace it with:

    #header_main .container, .main_menu ul:first-child > li a{ height:150px; line-height: 150px; }

    Regards,
    Ismael

    in reply to: how to make layered slider text responsive #206108

    Hi!

    Go to LayerSlider WP > Global Settings > Basic > set the width of the “Layers Container” and “Responsive under” options.

    Regards,
    Ismael

    Hey Gillianrose!

    Go to LayerSlider WP > Slide > Global Settings > Slideshow > Animate first slide, turn it off. Edit the layer then go to Options > Duration > set the “Transition in” to 0.

    Regards,
    Ismael

    Hi!

    You can try the RoyalSlider plugin. Hire a freelance developer to make it fully compatible with the theme. Visit http://werkpress.com/.

    Regards,
    Ismael

    in reply to: Masonry Sorting #206102
    in reply to: CSS for Main Nav #206100

    Hi LiveLightCo!

    Please use this on your custom.css or Quick CSS:

    .bottom_nav_header.social_header .main_menu ul:first-child>li:first-child a {
    border: none;
    }
    
    .bottom_nav_header.social_header .main_menu ul:first-child>li a {
    border: none;
    }

    Regards,
    Ismael

    in reply to: Portfolio Entries – change order #206099

    Hi!

    You can use this on functions.php:

    function custom_post_grid_query( $query, $params ) {
    $query['orderby'] = 'date';
    $query['order'] = 'ASC';
    return $query;
    }
    add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);

    Refer to this link for more order parameters: http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters

    Regards,
    Ismael

    in reply to: little problem list:/ #205519

    Hey!

    1.) You can create a new shop page then insert the LayerSlider + Product Grid element. Deselect the page on Woocommerce > Settings > Pages > Shop Base Page.

    2.) I don’t see the issue with the logo getting smaller but you can add this on Quick CSS:

    .logo img {
    height: 97px !important;
    }

    3.) Change the variation select text using this:

    #top .main_color select {
    color: red;
    }

    4.) Can you please post a screenshot?

    5.) Add this to make the background transparent for logo/partner element:

    #top .avia-logo-element-container .slide-image {
    overflow: visible;
    background: none;
    }

    6.) You can use this to change the blog background:

    .blog .container.template-blog {
    background: white;
    padding: 0 20px;
    }

    Remove browser cache then reload the page a few times to see the changes.

    Best regards,
    Ismael

    in reply to: BuddyPress vs BBpress #205517

    Hi!

    We recommend the Enfold theme but it is only compatible with bbPress. You need to hire a freelance developer to make it fully compatible with bbPress + S2Member Pro plugin. Please visit http://werkpress.com/.

    Cheers!
    Ismael

    in reply to: Logo cut off and mobile menu #205513

    Hey!

    Please add this on your custom.css or Quick CSS to fix the logo:

    @media only screen and (max-width: 767px) {
    .responsive .logo img {
    margin: 0 auto;
    max-width: 100%;
    width: 100% !important;
    position: relative;
    top: 15px;
    }
    }

    Did you modify anything on the theme files? The responsive menu is not showing. You have a lot of plugins installed, please try to deactivate them. See if it fixed the issue.

    Best regards,
    Ismael

    in reply to: Enfold > Blank page template > Alignment #205511

    Hey David!

    I’m sorry but can you please give us a link to a page using the “Blank Template” ? Please post a screenshot of what you’re trying to do.

    Cheers!
    Ismael

    in reply to: Padding #205509

    Hey!

    I tried it on Quick CSS but it is not working. Do you have access to the custom.css? Please add Yigit’s and my code there:

    .content, .sidebar {
    padding-top: 10px!important;
    padding-bottom: 10px!important;
    }
    
    body .column-top-margin {
    margin-top: 10px!important;
    }

    Edited: I added the changes directly on header.php and it seems to work now: http://www.gc-vitae.nl/

    Best regards,
    Ismael

    in reply to: Latest News Headline #205506

    Hey akmhou!

    Add this on functions.php file:

    add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
    function fix_single_post_title($args,$id)
    {
    if (is_single())
    {
    $args['title'] = "Latest News";
    $args['link'] = get_permalink($id);
    }
    
    return $args;
    }

    Best regards,
    Ismael

    in reply to: Theme colors #205505

    Hi designing!

    Can you please give us a link to the website? Attach a screenshot of the elements or objects that you want to change.

    Regards,
    Ismael

    in reply to: Icon box cursor #205503

    Hi!

    I tested the links, I can see the mouse cursor change to pointer when I hover over the iconbox top icons. Add this on your custom.css or Quick CSS:

    .iconbox_top .iconbox_icon {
    cursor: pointer !important;
    }

    Regards,
    Ismael

    in reply to: Enfold > Gravity Forms > Button > Hover #205498

    Hi!

    Glad it worked. :)

    Regards,
    Ismael

    in reply to: AddThis Facebook icon doesn't grab proper text or photo. #205497

    Hey!

    Please modify the code that I gave you. Replace it with this:

    <meta property="og:title" content="<?php echo get_the_title(); ?>"/>
    <meta property="og:description" name="description" content="<?php echo get_the_excerpt(); ?>" />
    <meta property="og:image" content="<?php echo avia_image_by_id(get_post_thumbnail_id(), 'large', 'url'); ?>" />

    Remove browser cache then reload the page a few times. Test it on another browser. Let us know if it helps.

    Cheers!
    Ismael

    in reply to: Enfold edit header / css / search bar #205496

    Hey Courin!

    Edit header.php, find this code:

    echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'strong');

    Below, add this code:

    echo "<div class='header-search'>";
    get_search_form();
    echo "</div>";

    Add this on your custom.css or Quick CSS:

    .header-search {
    position: absolute;
    top: 30px;
    left: 250px;
    }

    Modify the main menu font using this:

     .header_color .main_menu ul:first-child > li > a {
    color: red;
    }
    
    .main_menu ul:first-child > li > a {
    display: block;
    text-decoration: none;
    padding: 0 13px;
    font-weight: normal;
    font-size: 15px;
    }

    Cheers!
    Ismael

    in reply to: Product image on single product page hover issue on IE #205495

    Hey!

    Can you please give us a link to the actual website? Add this on your custom.css or Quick CSS:

    .four.units.single-product-main-image.alpha {
    overflow: hidden;
    }

    Regards,
    Ismael

    in reply to: LayerSlider Bug #205493

    Hey cbrand!

    Can you please give us a link to the website? I don’t see anything wrong with the settings.

    Best regards,
    Ismael

    in reply to: Portfolio entries, error 404 #205492

    Hi!

    Did you install the WPML string translation extension? You don’t need to switch the permalink settings to default. Please post the login details here as a private reply.

    Cheers!
    Ismael

    in reply to: Display Portfolio based on Tag #205490

    Hi!

    Did you select the “Logan Square” tag under “Post Tag” option?

    Cheers!
    Ismael

    in reply to: Blog Full Width Question #205486

    Hey!

    You can add this on your custom.css or Quick CSS:

    #top .fullsize .template-blog .post .entry-content-wrapper {
    max-width: 100%;
    }
    
    #top .fullsize .template-blog .post .entry-content-wrapper > * {
    max-width: 100%;
    }

    Adjust the max width.

    Best regards,
    Ismael

    in reply to: Move the second menu below the logo #205485

    Hi!

    You can add this on your custom.css or Quick CSS.

    @media only screen and (max-width: 767px) {
    .responsive .mobile_slide_out .logo { 
    margin: 20px 0;
    }
    
    #header_meta {
    position: absolute;
    bottom: 35px;
    border: none;
    box-shadow: none;
    background: none;
    left: 18%;
    }
    }

    Please remove browser cache then reload the page.

    Cheers!
    Ismael

    in reply to: Enfold, Nav menu to show tab rather than underline. #205484

    Hi!

    This will get you started. Add this on your custom.css or Quick CSS:

    .current-menu-item.current_page_item a {
    background: gray;
    border: 3px solid green;
    border-radius: 6px;
    }
    
    .main_menu ul:first-child > li a {
    height: 50px !important;
    line-height: 50px !important;
    }
    
    .main_menu {
    position: absolute;
    top: 30%;
    }

    Regards,
    Ismael

    in reply to: Content slider height #205482

    Hey!

    I don’t see any content slider on the website. Can you please point us to the actual page?

    Cheers!
    Ismael

    in reply to: Display Portfolio based on Tag #205273

    Hey Design!

    No, that is not possible with the Portfolio Grid element but you can do it using the Blog Posts element. On “Do you want to display blog posts?” option, choose “Display entries from a custom taxonomy”. “Which Entries?” should be “Post Tag”. Choose the Grid Layout for the “Blog Style” option to make it look like the Portfolio Grid layout somehow.

    Cheers!
    Ismael

    in reply to: Enfold > Gravity Forms > Button > Hover #205271

    Hey David!

    You can use this:

    .main_color input[type='submit']:hover {
    background: orange;
    color: white !important;
    }

    Best regards,
    Ismael

    Hey!

    I’m sorry but can you please post a screenshot of what you’re trying to do? A link to the actual website will help.

    Regards,
    Ismael

    in reply to: Sidebar Menu #205269

    Hey!

    You can remove the nested sidebar pages on Enfold > Sidebar > Page Sidebar navigation. Save changes.

    Cheers!
    Ismael

Viewing 30 posts - 61,801 through 61,830 (of 67,109 total)