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, 5 months ago Mirela
    Participant
    in reply to: Remove excess javascripts

    Hello,

    You can use some minifying plugin and a cache plugin to improve your site’s speed. Or remove javascript files for elements you do not use in the site. The main script files are stored in the js folder inside theme folder.
    Check out this article as well: https://codeless.co/how-i-increased-more-than-70-the-speed-of-my-website/

    Best regards!

    8 years, 5 months ago Mirela
    Participant
    in reply to: issues looking the page in horizontal way in a smartphone

    Hello,

    1-The text you have shown us is composed of two H1 titles. The line spacing referring is the distance from one H1 to the other. To increase this space, add this code into your custom css box:

    @media (min-width: 979px) and (max-width: 1024px){
    .block_title.section_title:first-child h1 {
        margin-top: 1px !important;
    }}
    

    2-To reduce space between rows, add this code into your custom css box:

    @media (min-width: 979px) and (max-width: 1024px){
    .wpb_row.standard_section {
        margin-bottom: 0 !important;
    }}

    3-Add this code for the slider. Change the values to your wish:

    @media (min-width: 979px) and (max-width: 1024px){
    .tp-caption {
        font-size: 28px !important;
        line-height: 40px !important;
    }
    .fullwidthbanner-container .fullwidthabanner {
        height: 490px !important;
    }
    .tp-fullwidth-forcer {
        height: 423px !important;
    }}

    Let us know.

    Best regards!

    8 years, 5 months ago Mirela
    Participant
    in reply to: 404 Oops! That page can’t be found. Setting Theme "studio"

    Hello,

    You have an old version of Codeless Builder. To update it, just delete the current version with all it’s files. Then go back to your wordpress dashboard. You will see a message requiring you to install needed plugins. In the list will be Codeless Builder (vs 1.2.5). Install it again.
    In almost every theme update we include a new and improved version of the builder. So by installing it again like this, you will be installing the very last version of it.
    If you still face any issue after this, send us some valid wp credentials in a private reply. So we can give it a closer look.

    Best regards!

    8 years, 5 months ago Mirela
    Participant
    in reply to: Buttons

    Hello,

    I am really sorry! I messed up the order of the lines in my last reply. Please edit your code to this:
    //vc_remove_element("vc_widget_sidebar");
    in order for this element to be available again.

    My apologies again! Let me know how it goes.

    Best regards!

    8 years, 5 months ago Mirela
    Participant
    in reply to: Portfolio- get rid of slug below item title

    Hello,

    I added this code into your custom css box in General Options:

    .portfolio-item.overlayed a { pointer-events: none;}
    .portfolio-item.overlayed h6 { display: none;}

    The first line, removes the linking effect from it, and the second part removes the category slug. Please keep in mind that this code will affect every portfolio item you have. If you want to use this only for this page specifically, then edit the same code to this:

    .page-id-1866 .portfolio-item.overlayed a { pointer-events: none;}
    .page-id-1866 .portfolio-item.overlayed h6 { display: none;}

    Let us know.

    Best regards!

    8 years, 5 months ago Mirela
    Participant
    in reply to: Blog Page

    Hello,

    1-Did you made any changes to theme code? I see the alternate style of blog is not displaying as it should normally. I suggest you update theme to it’s latest version too. For the time being, i set up blog like the demo you showed (minimal), by adding this custom css into your Custom css box:

    .fullwidth .blog-article.alternate-style .content {
        width: 995px !important;
    }
    .fullwidth .blog-article.alternate-style .content {
        width: 540px !important;
        float: right !important;
    }
    .fullwidth .blog-article.alternate-style .media {
        width: 395px !important;
    } 

    Please clear cache and check your site.

    2-To justify the text in each page content, i added this code into your Custom Css box in General Options:

    .wpb_text_column p {
        text-align: justify !important;
    }

    Please check your site and let me know.

    Best regards!

    8 years, 5 months ago Mirela
    Participant
    in reply to: Blog Page

    Hello,

    Can you please check again the password? I can not login with it (screenshot).

    The custom code affect every p tag. If there is some other element in the site inside it, eve if it happens to be an image or footer, it will be affected. In such case, all you have to do is add more css classes in order to specify the element that will be customized. I can help you with this, but i need a link of the page you want it to apply.
    Let us know.

    Best regards!

    8 years, 5 months ago Mirela
    Participant
    in reply to: 404 Oops! That page can’t be found. Setting Theme "studio"

    Hello,

    What theme version do you have installed? What Codeless Builder version? Do you have any third party plugin installed?
    Please make sure to have the latest versions for both. Also to have enough memory allocated for the wordpress in your server. Sometime this happens due to memory insufficiency.
    Let us know.

    Best regards!

    8 years, 5 months ago Mirela
    Participant
    in reply to: Top Item on Left Nav changes
    This reply has been marked as private.
    8 years, 5 months ago Mirela
    Participant
    in reply to: Blog Page

    Hello,

    Any page you have can be used as the blog page. Just assign it at the General Options > Select Special Pages > Select Blog Page. Then customize blog in General Options > Blog Config.
    If you need more help, send us some valid wp credentials in a private reply. And i can set it up like the demo for you.

    Let us know.

    Best regards!

    8 years, 5 months ago Mirela
    Participant
    in reply to: 404 Oops! That page can’t be found. Setting Theme "studio"

    Hello,

    Please go to WordPress dashboard > Settings > Reading > Your homepage displays, check the “Static Home page” radio button. Now assign a home page and blog page to your site.
    Let us know if the message persists.

    Best regards!

    8 years, 5 months ago Mirela
    Participant
    in reply to: Problems with team content

    Hello,

    You do not have to put it anywhere. You have to find the file staff.php. Using a ftp account, go to the wordpress folder and follow this path: wp-content/themes/tower/vc_templates/staff.php
    Screenshot: https://postimg.org/image/umsikpnzp/

    Open this file in a text editor and find the line above. Change the value as described.
    Let us know if you need further guidance.

    Best regards!

    8 years, 5 months ago Mirela
    Participant
    in reply to: Animation for entering the browser viewport

    Hello,

    Thank you for sharing your layout.

    Best regards!

    8 years, 5 months ago Mirela
    Participant
    in reply to: Codeless Slider Background Attachment : Fixed not working for all slides

    Hello,

    Can you please create a wp user for us? So i can check this out closely. You can send the credentials in a private reply.

    Thanks!

    8 years, 5 months ago Mirela
    Participant
    in reply to: Logo won't change after upload new logo, still handel logo

    Hello,

    Please clear cache and try again. If the situation persists, send us some valid wp credentials in a private reply. So we can give it a closer look.

    Best regards!

Viewing 15 posts - 4,306 through 4,320 (of 12,542 total)
← 1 2 3 … 287 288 289 … 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