Codeless
  • Support Home
  • Themes
  • Support
  • WordPress Tutorials
    • How to Start a Blog
    • Best Website Builders
    • Best Small Business Hosting
    • Email Marketing Services
    • Cheap WordPress Hosting
  • Video Tutorials

Community Forums

  • Profile
  • Topics Started
  • Replies Created
  • Favorites

Forum Replies Created

  • 9 years, 6 months ago Mirela
    Participant
    in reply to: edit blog masonry?

    Hello,

    Can you please be more specific? The default blog page, pull out all your posts and displays them on blog page. The style they are shown depends on the blog customization. Change blog styling in General Options > Blog Config.
    Let us know for anything.

    Beset regards!

    9 years, 6 months ago Mirela
    Participant
    in reply to: Responsive Mobile

    Hello,

    Yes, by default the breadcrumbs are disabled for mobile layout. I checked your site in mobile and navigate back and forth with “back” button of the browser and the mobile as well. I always landed to home page. Not in a blank page.
    Did you manage to fix your issue?

    Let us know.

    Best regards!

    9 years, 6 months ago Mirela
    Participant
    in reply to: Can’t Run This Code???

    Hello,

    Thank you for contacting us.
    The issue is not where you put the code, but the code itself. Please edit it to this:

    /**
    
     *  remove admin bar for member registrants
     */
    
     
    
    add_action('after_setup_theme', 'remove_admin_bar', 1);
    
    function remove_admin_bar() {
    
        if ( !current_user_can('administrator')  && !is_admin() ) {
    
            show_admin_bar(false);
    
        }
    
    }
    
    /**
    
    *  extend wp logged in cookie to one year
    
    */ 
    add_filter( 'auth_cookie_expiration', 'keep_me_logged_in_for_1_year', 99);
    
    function keep_me_logged_in_for_1_year( $expirein ) {
        return 31556926; // 1 year in seconds
    }

    And paste it in file functions.php.
    Let us know how it will go.

    Best regards!

    9 years, 6 months ago Mirela
    Participant
    in reply to: Background on homepage

    PS: Support does not give us such error when adding replies. When did you get it? Can you post some screenshot of it?
    So we can give a closer look.

    Regards!

    9 years, 6 months ago Mirela
    Participant
    in reply to: Background on homepage
    This reply has been marked as private.
    9 years, 6 months ago Mirela
    Participant
    in reply to: Background

    Hello,

    This is strange as neither by reducing the page, the gray background showed up. However, i added this code into your custom css box:

    @media (max-width: 979px){
    .slider#slider-fullwidth {
        background: rgb(253, 253, 253) !important;
        border-bottom: none !important;
        min-height: 170px !important;
    }
    }

    This is supposed to remove the space below the slider but also turning it to white color.
    Please check the site now. Let us know.

    Best regards!

    9 years, 6 months ago Mirela
    Participant
    in reply to: Customize icons

    Hello,

    Add the elements from Visual Composer elements list (screenshot) and edit their options.
    What exactly do you need to customize?
    Let us know.

    Best regards!

    9 years, 6 months ago Mirela
    Participant
    in reply to: Alignment Issues

    Hello,

    I unchecked the option in Column Options > General > Centered Content and added this code into the page’s custom css box:

    .services_medium.style_1.wpb_content_element {
        width: 75%;
        padding-left: 26%;
    }

    It’s centered now. Please check the page.

    Best regards!

    9 years, 6 months ago Mirela
    Participant
    in reply to: Add blank space below menu on blog page

    Hello,

    This css code in your custom css box:

    .top_wrapper {
        margin-top: -85px !important;
    }

    Was setting the content up in blog page and the !important did not allow you to add other css. So i added this line as well:

    .blog .top_wrapper {
        margin-top: 0 !important;
    }

    It changes the blank space height of blog content to header. Increase it further if you want more space.
    Let us know.

    Best regards!

    9 years, 6 months ago Mirela
    Participant
    in reply to: View all translate

    Hello,

    You can add more string to the .PO/.MO files in case the one you want to translate is not present already. Use a .PO files editor, such as PoEditor program to edit them.
    Or change the string directly in theme files (although we do not recommend it as it will prevent you from taking future theme updates).
    You can find the “view all” in file portfolio.php.
    Let us know.

    Best regards!

    9 years, 6 months ago Mirela
    Participant
    in reply to: Sticky menu does not appear, only on homepage!

    Hello,

    Sorry for the late reply.
    I checked your site and there is nothing wrong with it. Nor the files. The sticky menu does show up in the home page as well. But what happens is that the function to display it is triggered to late or at all. If you scroll down the site and then refresh the sticky header displays fine, see screenshot.
    We tested the same situation on our side and this does not happen. So i suggest you to install a cache plugin first. It will help have a faster site.
    Let us know.

    Best regards!

    9 years, 6 months ago Mirela
    Participant
    in reply to: media – link should open in same tab

    Hello,

    Please go to file vc_templates/media.php and find these lines:

    if($link!="#" && $link!="")
         $output .= '<a target="_blank" href="'.$link.'" ><img src="'.esc_url($image).'" alt="" class="type_image animated fadeIn'.esc_attr($animation).' alignment_'.esc_attr($alignment).'" '.$width_style.' /></a>';
    

    remove the target="_blank" from it and save changes.

    Let us know.

    Best regards!

    9 years, 6 months ago Mirela
    Participant
    in reply to: prevent jump on sticky nav

    Hello,

    Sorry but i don’t see any jump of the content. I opened several times the site, scrolling up and down. The sticky header is showing up smoothly and the same it goes back to it’s place when on top of the page.
    No jump happened as far as i checked.
    Let us know.

    Best regards!

    9 years, 6 months ago Mirela
    Participant
    in reply to: Change the language "Read More" button

    Hello,

    Sorry for the late reply.
    This is a Visual Composer element that is not overwritten by theme. So to change the “Read more” you need to edit plugins files. Please go to file wp-content\plugins\js_composer\include\params\vc_grid_item\templates.php find and translate the string here.

    The .PO/.MO files do not affect it since these files translate only theme’s strings and this is a plugin’s string.

    Let us know.

    Best regards!

    • This reply was modified 9 years, 6 months ago by Mirela.
    9 years, 6 months ago Mirela
    Participant
    in reply to: Background

    Hello,

    I don’t understand, i see the slider is fixed and there is no gray background under it. And i see from inspect elements that the custom css has been set.
    See screenshot. Where are you getting the gray background? Can you send a screenshot?
    Make sure to have cleaned cache and refreshed page.

    Best regards!

Viewing 15 posts - 6,856 through 6,870 (of 12,542 total)
← 1 2 3 … 457 458 459 … 835 836 837 →

Site Links

  • Support Policy
  • Specular Support Forum
  • Video Tutorials
  • Knowledge Base
  • Guides and Reviews

Useful Articles

  • Build a Website
  • Web Design & Development
  • Hosting
  • WordPress

Login

Log In
Register Lost Password