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, 5 months ago Mirela
    Participant
    in reply to: Full screen sliding on mobile

    Hello,

    Sorry for the late reply.
    I could not login with these credentials. Please edit code to this:

    @media (max-width: 480px){
    .container {
        max-height: 520px !important;
        margin-top: -60px !important;
    }
    .vc_custom_heading h2 {
        font-size: 18px !important;
        line-height: 21px !important;
    }
    p {
        line-height: 19px !important;
        font-size: 12px !important;
    }
    .accordion-heading {
        margin-top: -20px !important;
        width: 300px !important;
        margin-left: -15px !important;
    }
    .wpb_column {
        margin-bottom: -12px !important;
    }
    }

    Result.

    Best regards!

    10 years, 5 months ago Mirela
    Participant
    in reply to: Menu titles drop outside the menu bar

    Hello,

    Sorry for the late reply.
    Please add these lines into your custom css box:

    nav .menu > li {
        margin-right: -5px !important;
        margin-left: -5px !important;
        padding-right: 2px !important;
        padding-left: 2px !important;
    }

    And remove these symbols ‘ >>’ from the last menu item title as it consumes space and makes the default menu exceed the width of header. That is why is slides down.

    Best regards!

    • This reply was modified 10 years, 5 months ago by Mirela.
    10 years, 5 months ago Mirela
    Participant
    in reply to: Problems with displaying the portfolio

    Hello,

    Sorry for the late reply.
    The problem is that this ‘issue’ is only located in your computer (your location computers). We have opened your portfolio page in several computers in our offices, and in various browsers as well and this situation hasn’t happened not once!
    Check up the extensions of your browser or disable any caching plugin.

    Best regards!

    10 years, 5 months ago Mirela
    Participant
    in reply to: Not responsive on cell phone – Lightbox is not working

    Hello,

    I see various style.css files in your site. What plugins are you using? What theme? Please send us your wp credentials in a private reply. So we can give it a closer look.

    Best regards!

    10 years, 5 months ago Mirela
    Participant
    in reply to: 500 internal server error

    PS: This is Specular theme forum. You are using Tower theme. Please pay more attention to open your topics into the right forum. So we will not have any misunderstanding that would lose time to both of us.

    Thank you!

    10 years, 5 months ago Mirela
    Participant
    in reply to: 500 internal server error

    Hello,

    You are installing the wrong theme. The folder you download from Themeforest, ‘themeforest-11941335-tower-businessdriven-multipurpose-wp-theme.zip’ should be unzipped first. Inside this folder you have the theme folder (tower) which you should import into your wp-content/themes folder. or zip it and upload via Appearance > Themes > Add new.
    The other folders such as documentation, sliders, licence are optional. You can import demo sliders if you want, or create your own. The documentation and licence are for your information, not to be uploaded in server.
    Then activate theme normally.

    Let us know.

    Best regards!

    10 years, 5 months ago Mirela
    Participant
    in reply to: Going to Blog instead ot Main Page

    Hello,

    Sorry for the late reply.
    I can not open the link you send. Please make sure you have installed wordpress correctly. As for the en_US in url, is your site multi-language? What plugin are you using? Check up the form of permalinks. You must have selected to display the language in url.
    Let us know.

    Best regards!

    10 years, 5 months ago Mirela
    Participant
    in reply to: Header issues

    Hello,

    1-Go to file: include/core/codeless_elements.php, find this line:
    vc_remove_element("vc_separator");
    edit to this: //vc_remove_element("vc_separator"); Save file.

    2-It has a shadow effect enabled. It is an option available only for header style > “Menu Item with Border Bottom”. For that go to Header Options > Header Shadow.

    Best regards!

    10 years, 5 months ago Mirela
    Participant
    in reply to: Problems with display of website on mobile devices

    Hello,

    Sorry for the late reply.
    You can change the boxed container width to 90%. This will be the result. Is it what you want? Let us know.

    Best regards!

    10 years, 5 months ago Mirela
    Participant
    in reply to: Cannot install Visual Composer

    Hello,

    Sorry for the late reply.
    You had attempted to install plugin from your child theme. Because the included plugins follow the path of the parent theme, you were getting a wrong url error. You had to switch to parent theme to install them. I already installed Visual Composer.
    Please continue to customize your site.
    Let us know if you need further help.

    Best regards!

    10 years, 5 months ago Mirela
    Participant
    in reply to: Overwrite the default layout

    Hello,

    Sorry for the inconvenience. But you can change single post layout only in General Options > Blog Config > Single Post Layout. The developer team is already notified about it and we’ll fix this in the next theme update.

    Best regards!

    10 years, 5 months ago Mirela
    Participant
    in reply to: Blog page

    Hello,

    Sorry for the late reply.
    I fixed it. I added this code into your custom css box:

    .single-post .header_page h1 {
        line-height: 33px;
        width: 56% !important;
        padding-top: 14px;
    }
    .single-post .header_page .page_parents { right: -45px;}

    Result.

    Best regards!

    10 years, 5 months ago Mirela
    Participant
    in reply to: Blog Excerpt

    Hello,

    1- “If the post is created with Visual Composer I have no excerpt at all.”:
    This happens because you are not supposed to use VC in custom post types. The excerpt will display if you use text editor or any shortcode.
    You can change the code to display content text instead of excerpt. For that, go to file \includes\view\blog\loop-grid.php and find these lines:

    <div class="text">
        <?php   if($post_format == 'video' || $post_format == 'audio')
                 echo codeless_text_limit(get_the_content(), 20);
           else
                 echo get_the_excerpt();    
    ?>

    Replace with these:

    <div class="text">
        <?php   if($post_format == 'video' || $post_format == 'audio')
                 echo codeless_text_limit(get_the_content(), 20);
           else
                 echo codeless_text_limit(get_the_content(), 20);    
    ?>

    2- “If the post is a video post – it cuts the excerpt too early”:
    The configured number of words to display in case of a video post is 20. You can change that by editing the above file:
    Again in these lines:

    <div class="text">
        <?php   if($post_format == 'video' || $post_format == 'audio')
                 echo codeless_text_limit(get_the_content(), 20);
           else
                 echo get_the_excerpt();    
    ?>

    Increase the value (20) to your wish.

    Best regards!

    10 years, 5 months ago Mirela
    Participant
    in reply to: theme can't identify .po/.mo file

    Hello,

    Sorry for the late reply.
    We have tested it, it dos not have any issue. Please send us your wp and ftp credentials in a private reply. So we can give a closer look at what may be causing your problem.

    Best regards!

    10 years, 5 months ago Mirela
    Participant
    in reply to: My sidebar dessapears

    Hello,

    What plugin are you using for translation? Please send us your site’s credentials in a private reply.
    So we can give it a closer look.

    Best regards!

Viewing 15 posts - 10,336 through 10,350 (of 12,542 total)
← 1 2 3 … 689 690 691 … 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