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

  • 8 years, 9 months ago Mirela
    Participant
    in reply to: Purchase code not working
    This reply has been marked as private.
    8 years, 9 months ago Mirela
    Participant
    in reply to: Theme Issues, CL Builder stuck, …

    Hello,

    I checked the video slide in ipad and iphone, but it’s not blank. A fixed screenshot of the video shows up in both layouts. Did you fixed it? See screenshot: https://postimg.org/image/t426ujg6t/

    Let us know.

    Best regards!

    8 years, 10 months ago Mirela
    Participant
    in reply to: Contact form 7 compability

    Hello,

    To style the yellow/red/green lines, try adding this css into your custom css box:

    div.wpcf7-mail-sent-ok {
        max-height: 50px !important;
        margin-top: 96% !important;
    }
    div.wpcf7-validation-errors {
        max-height: 50px !important;
        margin-top: 98% !important;
    }
    div.wpcf7-mail-sent-ng { 
        max-height: 50px !important;
        margin-top: 96% !important;
    }

    Change the values to your wish.

    Best regards!

    8 years, 10 months ago Mirela
    Participant
    in reply to: client slider on mobile (responsive)

    Hello,

    In your case, you need to add this line as well, inside the @media rule:

    .clients .item {
        padding: 0 75px !important;
    }

    The code should become like this:

    @media (max-width: 480px){
    .clients_el { left: -17px !important;}
    .clients_el .pagination a {opacity: 1 !important;}
    .clients_el .pagination a.prev { left: -15px !important;}
    .clients_el .pagination a.next { right: -40px !important;}
    .clients_el:hover .pagination a.prev { left: -10px !important;}
    .clients_el:hover .pagination a.next { right: -45px !important;}
    .clients .item {
        padding: 0 75px !important;
    }
    }

    Result screenshot: https://postimg.org/image/gca6v9prp/

    Best regards!

    8 years, 10 months ago Mirela
    Participant
    in reply to: translation "page x of y"

    Hello,

    I have already notified the developers. We will try to include it asap.

    Best regards!

    8 years, 10 months ago Mirela
    Participant
    in reply to: Mobile Logo appearing in wrong place/size

    Hello,

    Please edit the code to this:

    @media (max-width: 480px){
    #logo img {
        max-height: 88px !important;
        margin-top: -42px !important;
    }
    #logo { float: left !important;}
    .mobile_small_menu {
        margin-left: 85% !important;
    }}
    

    Result screenshot: https://postimg.org/image/fg40hf7w5/

    Best regards!

    8 years, 10 months ago Mirela
    Participant
    in reply to: parallax presentation demo image

    Hello,

    Are you referring to this demo: https://codeless.co/specular/parallax/ ?
    The background images are row background images. Go to the Row Settings > Background Image and change it here.
    Let us know.

    Best regards!

    8 years, 10 months ago Mirela
    Participant
    in reply to: Sort the price tables from low to high (responsive / mobile)

    Hello,

    What elements are you using to show the prices? If the elements are organized by columns, than this is not possible. By the result in the mobile, i suppose they do are set in columns.
    The elements follow one another in order when in mobile (or any small screen). Please see these screenshots for more:
    This layout will result in your current situation in mobile: https://postimg.org/image/bcgtu5g39/
    This layout will get you what you want in mobile: https://postimg.org/image/7indkzyr9/

    Let us know.

    Best regards!

    8 years, 10 months ago Mirela
    Participant
    in reply to: client slider on mobile (responsive)

    Hello,

    You can change the icons position using custom css. Add this code into your custom css box:

    @media (max-width: 480px){
    .clients_el { left: -17px !important;}
    .clients_el .pagination a {opacity: 1 !important;}
    .clients_el .pagination a.prev { left: -15px !important;}
    .clients_el .pagination a.next { right: -40px !important;}
    .clients_el:hover .pagination a.prev { left: -10px !important;}
    .clients_el:hover .pagination a.next { right: -45px !important;}
    }

    Change the values to your wish. Result screenshot: https://postimg.org/image/xfamedh9x/
    Let us know.

    Best regards!

    8 years, 10 months ago Mirela
    Participant
    in reply to: translation "page x of y"

    Hello,

    Please go to file function-specular.php and find this function(line 23):
    function codeless_pagination(
    Find this line in it:
    echo "<div class=\"pagination\"><span>Page ".$paged." of ".$pages."</span>";

    Change the strings here. Save changes.

    Best regards!

    8 years, 10 months ago Mirela
    Participant
    in reply to: single page menu – scroll position

    Hello,

    Can i please see a link of your site? Do you have any other third party plugins installed?

    Best regards!

    8 years, 10 months ago Mirela
    Participant
    in reply to: blog page title

    Hello,

    Please go to file includes\view\page_header.php and find this line:
    <h1><?php echo esc_html($title) ?></h1>
    Replace with this:
    <h1><?php if ( is_singular('post') ) { echo 'Blog'; } else echo esc_html($title) ?></h1>

    Save file.

    Best regards!

    8 years, 10 months ago Mirela
    Participant
    in reply to: delete target blank

    Hello,

    Sorry for misunderstanding.
    In that case, please go to file vc_templates/media.php and find this line:
    $output .= '<a href="'.$link.'" target="_blank"><img src="'.esc_url($image).'" alt="'.$image_description.'" class="type_image animated fadeIn'.esc_attr($animation).' alignment_'.esc_attr($alignment).'" '.$width_style.' /></a>';

    Replace with this:
    $output .= '<a href="'.$link.'"><img src="'.esc_url($image).'" alt="'.$image_description.'" class="type_image animated fadeIn'.esc_attr($animation).' alignment_'.esc_attr($alignment).'" '.$width_style.' /></a>';

    Refresh page.
    Let us know.

    Best regards!

    8 years, 10 months ago Mirela
    Participant
    in reply to: E-Mail Link (mailto) – List-item VC

    Hello,

    Sorry but this is not possible.
    Check this related topic to learn more: https://support.codeless.co/?topic=how-to-link-a-list-item

    Best regards!

    8 years, 10 months ago Mirela
    Participant
    in reply to: Codeless Slider Disable

    Hello,

    I use FileZilla for file access. However, it’s not important now as long as you have replaced the file with the one we send you. It’s the same as if we had done the changes directly into your server.

    Let us know if you need further help. I will mark this topic as resolved. Please open new tickets for every other question.

    Best regards!

Viewing 15 posts - 5,101 through 5,115 (of 12,542 total)
← 1 2 3 … 340 341 342 … 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