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, 9 months ago Mirela
    Participant
    in reply to: /feed/ generated pages

    Hello,

    Glad to know it’s ok.

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: Page Header Title Cut Off – Desktop & Responsive

    Hello,

    Please fill in the necessary information on your extra information fields of your profile data. So we can fix these for you.

    Read this article for more information.

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: How to stop logo from scrolling along with page

    Hello,

    This year, the Envato support time policy has changed. All customers that buy Envato themes from now on will have only 6 months free support and then will have to pay to extend it.
    We reflected the changes in our support system as well. So since your support time has indeed expired, your profile says so. But since you were one of our customers before this policy came to life, you are excluded from the rule and still have rights to access it.

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: Setting default category for portfolio page

    Hello,

    This block of code is responsible for the generation of categories filter bar in portfolio pages. This line:
    <li class="filter active all" data-filter="all"><php _e('View All', 'codeless') ></li>

    will display the “View All” (first tab). This is what you have to change. Edit data-filter="all" to the category you want to show.

    While this cycle here:
    <li class="other filter" data-filter=".<php echo esc_attr($cat->slug) ?>"><a href="#" class="filter" data-filter=".<php echo esc_attr($cat->slug) ?>"><php echo esc_html($cat->name) ?></a></li>
    will automatically list out all the available categories after the “View All” tab.
    Hide the category displayed first, from this list with custom css.

    Sorry but this is a custom edit and it’s not included in support service. This is all i can help you with.
    Please read more regarding our support policy here.

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: footer menu is slightly aligned right

    Hello,

    Please add this code into your custom css box:

    footer#footer .inner .row-fluid.ff .span12:first-child:last-child {
        width: 300px;
        position: relative;
        left: 45%;
        margin-left: -150px;
    }

    Edit the values to your wish. If any of the attributes does not give effect, then just add !important to it.

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: Specular 2.2. and visual composer 4.12.1 does not work

    Hello,

    Can you please be more specific? What kind of problem do you have?
    Please explain your issue in as much detail as you can and fill in the necessary information on your extra information fields of your profile data. So we can give it a closer look.

    Read this article for more information.

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: Huge white gap when adding elements with Visual Composer

    Hello,

    This is not caused from row settings or theme options, but is due to the video you have in this page. Please see screenshot. I added this code into the page’s custom css box:

    .wpb_video_widget .wpb_video_wrapper {
        padding-top: 0 !important;
    }

    It’s ok now.

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: Agency Demo

    Hello,

    Can i please see a link of your site? If you fill in the information on your extra information fields of your profile data, we can help you set it up like the demo.

    Read this article for more information.

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: footer menu is slightly aligned right

    Hello,

    Can i please see a link of your site? I can send you the right code to add. The link you have set up in your profile details is not correct.
    Let us know.

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: Setting default category for portfolio page

    Hello,

    Look for these lines:

    <nav id="portfolio-filter" class="span12">
       <ul class="">
           <li class="filter active all" data-filter="all"><a href="#" class="filter active" data-filter="all"><?php _e('View All', 'codeless') ?></a></li>
                                
                <?php foreach($cl_redata['portfolio_categories'] as $cat): ?>
                      <?php $cat = get_term($cat, 'portfolio_entries'); ?>
                      <?php if(is_object($cat)): ?>
                            <li class="other filter"  data-filter=".<?php echo esc_attr($cat->slug) ?>"><a href="#" class="filter" data-filter=".<?php echo esc_attr($cat->slug) ?>"><?php echo esc_html($cat->name) ?></a></li>
                       <?php endif; ?>
                  <?php endforeach; ?>
         </ul>
    </nav>

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: Blog template \'medium image right\' showing large images.

    Hello,

    Sorry for the late reply.
    1-So i checked your function.php file and i see that the image size set for blog page are exactly as the images in your blog page. Please see screenshot of function and blog. You need to change the dimensions here first and then upload images again like instructed in the topic i send you before.

    2-The search layout is inherited from blog settings. This means that they will display in the same form as the blog items are being displayed. So changing the blog image sizes will result in the change of search as well.

    3-Same goes with the post image left.
    Let us know.

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: Fullwidth Video portfolio item – Not Working

    Hello,

    Sorry for the inconvenience. We will investigate this and include a fix in the next theme update. Please use type in container for the time being. You can make it fullwidth using this custom css:

    .portfolio_single .media {
        width: 143% !important;
        margin-left: -21% !important;
    }

    Thank you for noticing this.

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: Portfolio items shifted to the left in responsive view

    Hello,

    I added this code into your custom css box:

    @media (max-width: 480px){
        .portfolio-item.overlayed .tpl2 {
        padding-left: 20px;
    }}

    This is the result screenshot. Let us know if you need further help.

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: Tower WP – choose categories for blog’s sidebar

    Hello,

    It’s not possible to chose which ones to show from the options. But you can hide the categories you do not want with custom css. Add the code into your Custom css box.

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: Setting default category for portfolio page

    Hello,

    The responsible code snipped is located in file portfolio.php.

    Best regards!

Viewing 15 posts - 7,591 through 7,605 (of 12,542 total)
← 1 2 3 … 506 507 508 … 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