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, 1 month ago Mirela
    Participant
    in reply to: Twitter and blogging issues

    Hello,

    This is because the twitter links have 100% width. This makes the hashtags to go to a new line. You can change that by adding this code into your custom cs sbox:

    footer .inner .widget a.twitter-link {
        width: 35% !important;
    }

    Change the value to your wish.

    Best regards!

    10 years, 1 month ago Mirela
    Participant
    in reply to: Mobile Layout – Bugs and Responsive Menus

    Hello,

    I added these lines into your custom css box, inside the @media (max-width: 480px):

    .footer_wrapper .row-fluid .span3:nth-child(3) { display: none;}
    .footer_wrapper .row-fluid .span3:nth-child(4) { display: none;} 

    The third and forth footer column are removed from mobile view.

    Best regards!

    10 years, 1 month ago Mirela
    Participant
    in reply to: FAQ’s / Accordion auto-scroll is a big problem

    Hello,

    Not all of the changes suggested will be wiped out from the next theme update. Some changes, like the code in the reply above, will be added in the next theme update so that the issue solved from it will not be lost. As for the css code, if you have added it in your custom css box, that will not be affected by any theme update.
    Sorry but you have to add the sidebar widgets once again at your child theme. There is no option to import them.
    Let us know.

    Best regards!

    10 years, 1 month ago Mirela
    Participant
    in reply to: Custom Headings shortcode doesn’t have same font options as Tower theme. Why?

    Hello,

    You can suggest more features or additions to existing features in this forum.
    To edit the custom heading font please add this code into your custom css box:

    .vc_custom_heading {
        font-family: Great Vibes !important;
    }

    Best regards!

    10 years, 1 month ago Mirela
    Participant
    in reply to: Visual Composer Problem

    Hello,

    What version of Visual Composer do you have? Please make sure to update VC as well. Follow these instructions.
    If the issue persists, send us your wp credentials in a private reply. So we can give it a closer look.

    Best regards!

    10 years, 1 month ago Mirela
    Participant
    in reply to: Tower theme – codeless slider above page header

    Hello,

    If you have added slider from the page’s General Settings > Slider then it’s position is right after menu and above page header. If you want slider after page header then do not select any slider from General Settings, but add it as a Visual Composer element in the page’s content.

    Best regards!

    10 years, 1 month ago Mirela
    Participant
    in reply to: "open with modale" Single image option no more working after update

    Hello,

    Please send us your wp credentials in a private reply. So we can give it a closer look.

    Best regards!

    10 years, 1 month ago Mirela
    Participant
    in reply to: Equal height

    Hello,

    Can you please post a link where are you trying this?

    Best regards!

    10 years, 1 month ago Mirela
    Participant
    in reply to: slide behind header

    Hello,

    You had not activated neither one of the page headers/ There are two options for it. One is at the general Options > Header Options > Default Page Header (is not enabled) and the second one is in the page’s General Settings > Page Header Options (was not enabled). I enabled it and set a background image. Please check this page: https://2.225.102.67/rcmedici/giovani-medici/ in your site.

    Best regards!

    10 years, 1 month ago Mirela
    Participant
    in reply to: Visual Composer – Media Grids Not Showing

    Hello,

    Please go to file js/main.js and find this line:
    linkElement : 'a:not([target="_blank"]):not([href^=#]):not(.lightbox-gallery):not(.zoom):not(.prettyphoto)'
    Replace with this:
    linkElement : 'a:not([target="_blank"]):not([href^="#"]):not(.lightbox-gallery):not(.zoom):not(.prettyphoto)'
    It will remove the js error you got in your site and make media grid elemnts show.
    Let us know.

    Best regards!

    10 years, 1 month ago Mirela
    Participant
    in reply to: Can’t change Page header background and font color

    Hello,

    You have an error in your site (screenshot), either the image you uploaded for page header background does not exist or you do not have the necessary access rights in theme files.
    I was able to set up the page header of the test page you have. Please check it.
    Please update theme and visual Composer first. Make sure to save a backup of the files in case you have made changes to theme files.
    Let us know if the issue persists.

    Best regards!

    10 years, 1 month ago Mirela
    Participant
    in reply to: Tower 1.6 – Visual composer 4.11.1.2 – WordPress 4.5

    Hello,

    Can you please check again the ftp? I can’t login.
    I made a test for the google map and it works as it should with VC (test page) To be able to add it in the footer too, you need to use a custom plugin.
    Let us know.

    Best regards!

    • This reply was modified 10 years, 1 month ago by Mirela.
    10 years, 1 month ago Mirela
    Participant
    in reply to: ALT Tags Removed on Featured Images

    Hello,

    Please go to file includes/view/blog/loop-index.php find these lines:

    <?php if(!is_single() || (is_single() && $cl_redata['use_featured_image_as_photo']) ): ?>
    <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'blog', 'url')) ?>" alt="">
     <?php endif; ?>

    Replace with these:

    <?php if(!is_single() || (is_single() && $cl_redata['use_featured_image_as_photo']) ): ?>
     <?php echo codeless_image_by_id(get_post_thumbnail_id(), '', 'alt') ?>
    <?php endif; ?>

    Ps: this is a tested code so it should not give any issue if pasted right. If you still can not do it, then send us your wordpress credentials in a private reply. We will do it for you. (the ftp data is not valid, i can not connect)

    Best regards!

    10 years, 1 month ago Mirela
    Participant
    in reply to: Publishing and Permalink questions.

    Hello,

    2-Please read more regarding permalinks structure here.

    3-You can set up the pages as private (go to page’s option panel -> go to left sidebar, Publish > Visibility > Private ). Screenshot
    Let us know if you need further help.

    Best regards!

    10 years, 1 month ago Mirela
    Participant
    in reply to: Mobile Menu Issue/Footer widget question/Responsive Logo Size

    Hello,

    Please add this code into your custom cs sbox:

    @media (max-width: 767px){
    #logo { left: 50% !important;}
    footer#footer .inner .row-fluid.ff .span12:first-child:last-child {
        margin-left: 0px !important;
    }
    }

    Result screenshot (1),(2).

    Best regards!

Viewing 15 posts - 9,016 through 9,030 (of 12,542 total)
← 1 2 3 … 601 602 603 … 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