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

  • 10 years, 6 months ago Mirela
    Participant
    in reply to: Top link in Small service icon different

    Hello,

    I have already replied you about this request in this topic of yours. Please follow up in the other topic. I am closing this ticket as it is a duplicate.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: Accordion not working after update

    Hello,

    Sorry for the late reply.
    I understand your point but this is the number of settings that this element is going to have. I have confirmed with the developer team and the previous settings are not scheduled to be added soon. This is due to the recent changes that Visual Composer has made.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: Logo – How do i reduce it when in smaller sticky mode

    Hello,

    Please add this code into your custom css box:

    .sticky_header header#header .row-fluid .span12, .sticky_header .header_wrapper {
        height: 90px;
    }
    .sticky_header #logo img.dark {
        height: 80px;
        margin-top: -46.5px;
    }

    Best regards!

    • This reply was modified 10 years, 6 months ago by Mirela.
    10 years, 6 months ago Mirela
    Participant
    in reply to: Porfolio – How do you enable lightbox?

    Hello,

    My apologies for the late rpely.
    You do have the lightbox view enabled. Just select in portfolio page’s Portfolio Options > Portfolio Mode -> grid and Portfolio Style > Basic with title and description. This will add an icon to open image in lightbox. See screenshot.
    -As for the second request, sorry but that is not possible.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: Product Image

    Hello,

    Please edit the code above to this:

    img.attachment-shop_single.wp-post-image:hover {
        webkit-transform: scale(1.25);
        -moz-transform: scale(1.25);
        -ms-transform: scale(1.25);
        -o-transform: scale(1.25);
        transform: scale(1.25);
    }
    

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: Tower’s top menubar item behaving

    Hello,

    Please add this code into your custom css box:

    @media (max-width:1690px){
     nav .menu > li > a, nav .menu > li.hasSubMenu:after, header#header .header_tools .vert_mid > a:not(#trigger-overlay), header#header .header_tools .cart .cart_icon { font-size: 13px !important;}
    }

    Edit font size to the value you want.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: Visual Composer – Gap Error

    Hello,

    I tested this layout on our side but it does not happen. I created a test page on your site and changed the elements positions various times. Saved the changes and still did not get that situation.
    It could have been a host issue on saving properly your settings, that now it’s gone.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: Codeless Slider Video Background

    Hello,

    Sorry for the late reply.
    In file vc_templates/vc_row.php find this line:
    $video_markup = '<div class="video-wrap"><video id="video_background" preload="auto" autoplay="true" loop="loop" muted="muted" volume="0">

    Remove the muted="muted" from it and save file.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: Installation error

    Hello,


    @gankush12
    ,
    Please make sure to have enough memory limit.
    You can also try to upload theme via ftp and activate it from wordpress. But if you do not have enough memory and execution time limit, it will still pose issues. Please increase memory limit and make sure the host allows the download of images from other hosts.
    You must increase the max execution time on php.ini on your host.
    Set it’s value to 300 seconds (5 minutes). If you still get the error, then try increasing the value to 600. As for the memory limit, 64M should be enough. You can ask you host to do it for you.
    Let us know.


    @pietrofarese
    ,
    I click on the link you posted and copy-paste the username and password. Yet, i still have the same result. Also i get ‘Access Denied’ from ftp. Your host may have blocked outer IP’s to access your site. Contact your host about it.
    By “sufficient access to the files” i mean that sometimes, hosts do not give full access right to files and thus the installation script, can not access all the files it needs to import data. And since i too, am having issues accessing your site, that could be the reason.
    Let us know.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: responsive error on menu ipad

    Hello,

    I see from inspect element that logo and menu items, values are not as assigned from the code i gave you but higher. Respectively,

    .header_11 #logo {
        margin-left: 30px;
        margin-right: 30px;
    }
    nav .menu > li {
        padding-right: 8px;
        padding-left: 8px;
    }

    Please add !important to the previous code and try again.
    Should be like this:

    @media (max-width:1024px){
    .header_11 #logo {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }
    nav .menu > li {
        padding-right: 2px !important;
        padding-left: 2px !important;
    }}

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: Problems with header (and a question)

    Hello,

    I fixed it. I added this code into your custom css box:
    .header_wrapper { position: fixed !important;}
    I removed the “hamburger” menu, in General Options > Extra Side Navigation, OFF.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: Top link in Small service icon different

    Hello,

    Sorry for the late reply.
    Please add this code into your custom css box, to change the links color:

    p a { color: #989898 !important;}
    a:hover { color: #413A64;}

    Send us your ftp so we can do the necessary changes for sub-menu items display in mobile.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: sidebar single product

    Hello,

    In that case, add this code into your custom css box:

    .single-product .fullwidth .span9 {
        width: 100%;
    }

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: Page Comment. Comentarios en Paginas.

    Hello,

    Sorry but the comments are not enabled in pages by default. To add them follow these steps:
    1-please go to file page.php and find this line:

    <?php endif; ?>
    <?php get_footer(); ?>

    Replace with these:

    <?php endif; ?>
    <?php comments_template( '/includes/view/blog/comments.php');  ?>
    <?php get_footer(); ?>

    2-Add this code into your custom css box:

    .page #comments {  width: 80%; padding-left: 16%; border-top: none;}
    .page div#respond {  padding-top: 11% !important; padding-left: 16%; padding-bottom: 60px;}
    .page #respond textarea { width: 80%; padding-left: 16%;}

    Save!

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: Visual Composer – Gap Error

    Hello,

    You have organized some elements in two columns. They are just following each other height. However, i accessed your dashboard and this is what i see: screenshot. I believe you already managed to synchronize the heights so that the difference is gone.

    Best regards!

Viewing 15 posts - 10,561 through 10,575 (of 12,542 total)
← 1 2 3 … 704 705 706 … 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