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 ago Mirela
    Participant
    in reply to: Videos Not Working on Mobile

    Hello,

    If you are happy with our support, please rate the product with 5 stars under the Downloads tab of your Envato profile.
    This is very important for us to be able to keep working hard and provide more
    awesome work.

    Thank you for being an awesome customer!

    • This reply was modified 9 years ago by Mirela.
    9 years ago Mirela
    Participant
    in reply to: Mobile Menu Not Showing

    Hello,

    Please fill in the wp login information on the extra information fields of your profile data. So i can give a closer look on how the code pasted.

    Read this article for more information.

    Best regards!

    9 years ago Mirela
    Participant
    in reply to: Search issue when scroll down the page.

    Hello,

    I fixed it.
    In the codelessSearchButton() i commented out some lines that were preventing this.
    The original code: https://codeshare.io/21qwOm
    The edited version: https://codeshare.io/G7Znek
    Please check your site.

    Best regards!

    9 years ago Mirela
    Participant
    in reply to: homepage elements hide under top menu when changing window size

    Hello,

    Sorry but we do not support third party plugins.
    I can only suggest to turn off the “responsive” on layer slider and edit the responsiveness of the image with custom css. It’s less work then editing the widget going up and down.

    Best regards!

    9 years ago Mirela
    Participant
    in reply to: Search issue when scroll down the page.
    This reply has been marked as private.
    9 years ago Mirela
    Participant
    in reply to: Videos Not Working on Mobile

    Hello,

    This happened because you had checked the options to hide column in responsive. See screenshot: https://pho.to/Ajtge
    I unchecked them and added this code into your custom css box, to fix the width of the video in mobile portrait and landscape:

    @media(max-width: 480px){
    .video_embeded {
        width: 350px !important;
        left: 3% !important;
        margin-left: 0px !important;
    }}
    
    @media(min-width: 767px) and (max-width: 979px){
    .video_embeded {
        width: 600px !important;
        left: 5% !important;
        margin-left: 0px !important;
    }}

    Result screenshot: https://pho.to/Ajtiv
    Please clear cache and refresh page. Let us know.

    Best regards!

    9 years ago Mirela
    Participant
    in reply to: Mobile Menu Not Showing

    Hello,

    The Top Widgetized are is not shown in mobile by default. Because of the lack of space. To add it back, add this code into your custom css box:

    @media (max-width: 767px){
    .top_nav {
        display: block !important;
    }}

    Let us know.

    Best regards!

    9 years ago Mirela
    Participant
    in reply to: Search Function – products not blog posts

    Hello,

    2-To remove the date on only products in search page, please add this code into your custom css box:

    .search .product .info li:first-child {
        display: none;
    }
    .search .product .info li:nth-child(2) {
        display: none;
    }

    To remove date in all search results add this code:

    .search .info li:first-child {
        display: none;
    }
    .search .info li:nth-child(2) {
        display: none;
    }

    This does not affect the posts in blog page.

    3-The blog post featured image is originally rectangle, not square. Changing it requires more work and it’s not supported from this forum.

    PS: Please keep in mind to open new tickets for every question. Having multiple request in one topic or keep adding more in the same topic is not search effective for the forum. We wish for all our visitors to be able to find easily an answer from old topics to their issues. This is done by keeping up to one ticket per question.

    Note: The two latest requests are in fact customizations, not theme errors. If you want to customize theme to your need(like filter search results to not show up blog posts but only products), that’s another thing. Other customers need to search to do it’s job and search for every thing it can find in the site related to the search key word.
    We have already notified you that personal customizations are not included in support service. So please refrain to ask for only actual issues.

    Thank you for understanding and cooperating!

    Best regards!

    9 years ago Mirela
    Participant
    in reply to: Cart Layout, Buttons, & Product Typography

    Hello,

    1-Please add this code into your custom css box, to right align the “Cart totals” heading:

    .woocommerce-cart .woocommerce .cart-collaterals .cart_totals h2 {
        text-align: right !important;
    }

    3-Can you please check again the cpanel credentials? I am not able to login: https://www.clipular.com/c/6315522099773440.png?k=YmMxrdfyhgxavwx2eVlcgkBDfpI

    Best regards!

    9 years ago Mirela
    Participant
    in reply to: Homepage Service tiles

    Hello,

    Did you change theme code? I see in file vc_templates/services_media.php this line:
    $bg_image_src = wp_get_attachment_image_src($photo, 'staff');
    is not correct. The right line is this:
    $bg_image_src = wp_get_attachment_image_src($photo, 'large');

    In the original line, the services images will take the dimensions of the large thumbnails as set in Settings > Media (screenshot). This leaves the original image intact and it will not shrink in the service element.
    By changing it to “staff” as you have it, it crop’s down the images (no matter the dimension it is originally uploaded) to the staff dimension specified in file function.php (screenshot). Leading to the result you already have.

    So go to file vc_templates/services_media.php, find and change the line above to the one specified (just change “staff” to “large”). Upload once again the images to set in services media or run a plugin that regenerates the thumbnails.

    Best regards!

    9 years ago Mirela
    Participant
    in reply to: can't install business theme

    Hello,

    Please send us your wp credentials in a private reply or in your profile data. Read this article for more information.

    There are several business demos, which one are you trying to install?
    Let us know.

    Best regards!

    9 years ago Mirela
    Participant
    in reply to: Mobile Menu Not Showing

    Hello,

    -The menu items show up just right in mobile. Please see screenshot: https://pho.to/AjpMt

    -You can style the mobile drop-down menu in General Options > Header Options > Dropdown Options.
    -Please add this code into your custom css box to reverse the positions of logo and mobile menu:

    @media (max-width: 480px){
    #logo {
        float: left !important;
    }
    .mobile_small_menu.open {
        margin-left: 80% !important;
    }
    .mobile_small_menu.close {
        margin-left: 80% !important;
    }}

    Result screenshot: https://pho.to/AjpN8

    Best regards!

    9 years ago Mirela
    Participant
    in reply to: Mobile Menu Not Showing

    Hello,

    Please add this code into your custom css box:

    .menu-small ul.menu > li > a {
        color: #151414 !important;
    }

    The menu items are there, but they are white. That’s why you do not see them.

    Best regards!

    9 years ago Mirela
    Participant
    in reply to: REFUND

    Hello,

    Sorry but you are misunderstanding the situation. This is a wordpress theme and can be installed and work very well in every wordpress installation. Be it in a stand alone server or shared hosting.

    The fact that you do not have enough access rights, to perform changes like increase the file import size or memory limit used. or even have access to files using a normal ftp account, this is not responsibility of theme.
    Wordpress.com does not allow other themes other than the ones of wordpress.org. In our theme’s profile is not mentioned that you can use it in wp.com. So you were not misleaded from us. Check again theme’s profile here: https://themeforest.net/item/specular-responsive-multipurpose-business-theme/9412083?s_rank=2

    Theme is indeed very easy to use. All you have to do is:
    1-install it;
    2-install included plugins;
    3-import demo data;
    that’s it! Then keep on editing the demo data to your wish or create new pages from scratch using the very handful Visual Composer.

    This item has no problem working as it should. It is tested multiple times from our staff and the Envato staff before launching on sale. There is nothing to fix from theme part. The thousand satisfied clients can guarantee it.
    Please check theme’s profile in Themeforest for more testimonials.
    Try installing it in another server and you will see that the issue is not the theme but the server restrictions you are using it in.

    Best regards!

    • This reply was modified 9 years ago by Mirela.
    9 years ago Mirela
    Participant
    in reply to: homepage elements hide under top menu when changing window size

    Hello,

    Please know first that this is not a theme issue. Every plugin you install has code that will be added to theme’s code and sometime they may not go well. We can not test every plugin that there is out there and adjust theme code with all of them.

    The two situations you mention are composed of different elements. The first has a slider and then the content (screenshot). The second has the content and a slider as background in one of it’s rows (screenshot). The css of these layout also will be different. Hence the different behavior of the widget.
    Your widget has other css classes that may fit well or not in the theme’s code. In the first situation they do not. So what i can suggest you is to fix it using custom css.

    Try adding this code into the test home page’s custom css box:

    @media (max-width: 1400px){
    .lenderlist-widget-wrapper {
        padding-top: 14% !important;
    }}

    Best regards!

Viewing 15 posts - 5,581 through 5,595 (of 12,542 total)
← 1 2 3 … 372 373 374 … 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