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: Menu layout breaks – How to switch earlier to the responsive menu?

    Hello,

    What exactly were you expecting?
    The entire responsive layout is build with this type of css. The only difference is that in styling files you can find the right css for all devices (mobile; ipad;) that are globally recognized. But for sizes in between these pre-defined dimensions, you will have to add the custom code that modifies it.

    However, let us know if we can help you with our theme.

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: Alignment Issues

    Hello,

    You were editing the wrong css class for that. That’s why other styling issues arise.
    I added this code instead:

    .top_wrapper {
        margin-top: -85px !important;
    }

    It’s ok now. Please check your site.

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: Page 2 in projects only shows a 404

    Hello,

    Yes, please send us some valid wordpress login credentials of this page. So we can take a closer look at what the issue is.

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: Need to edit /includes/view/blog/loop and I can't find where to edit it in WP

    Hello,

    You can find a list of theme files to edit in WordPress dashboard menu Appearance > Editor (screenshot). The rest of them (which is not listed) you will have to access using your cpanel account or a ftp connection.
    You can ask your hosting provider to help you with these accounts.

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: The content of my website is in the left

    Hello,

    Your site looks like it’s not able to call all necessary styles when it refreshes. Did you made any changes to theme files? I see here that the style.css file is not the same as the default. Please see screenshot.
    Do you have any third party plugin installed? Please disable them and then upload a fresh copy of theme files. If the issue persists, i suggest you to check the access rights on theme files in your host.
    Let us know.

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: Portfolio Fullscreen Homepage – clickable images

    Hello,

    Please refer to this topic: https://support.codeless.co/?topic=opening-portfolio-items-only-on-name
    Regarding this.
    Let us know if you need help.

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: Anchor links / Page jumps not jumping / linking

    Hello,

    Sorry but that is not possible. The section link is available only for rows in the one page template.

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: Problem with Menu (Overlaying)

    Hello,

    i checked your site, but i don’t see the sub-menus overlaying anymore. See screenshot of it. Please clear cache and refresh pages on your computer.

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: Menu not displaying correctly on mobile

    Hello,

    Sorry but is still not possible to log in. The pop-up keeps asking for credentials even if i put the new ones.
    Screenshot.

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: Page header overlay color css tag missing final ")"

    Hello,

    Sorry for the late reply.
    Please fill in the necessary information on your extra information fields of your profile data. So we can take a closer look to the situation and your custom css code.

    Read this article for more information.

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: Set frontpage for multilingual site

    Hello,

    Sorry for the late reply.
    You have to check all pages and assign at first, what language do they belong (screenshot). Then Proceed with translating each one of them (screenshot). You have to manually add the elements and translate them in each new translated version of a page.

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: Portfolio page template issue

    Hello,

    I created a copy of your portfolio page and this does not happen. Please see here: https://grupavcanal.pl/testing
    I see no issue in your page except the fact that you have many other third party plugins installed. I suggest you to try and recreate the page again.
    Let us know if the issue persists.

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: Opening portfolio items only on name

    Hello,

    Please go to file wp-content/themes/specular/includes/view/portfolio/loop-grid.php and find these lines:

     <?php }else if($style == 'grayscale'){ ?>
     <div class="portfolio-item mix <?php echo esc_attr($sort_classes) ?> <?php echo esc_attr($extra_class) ?>  <?php echo esc_attr($style) ?>" data-id="<?php echo get_the_ID() ?>">
        <div class="">
        <?php if($item_grid_class == 5){  ?>
             <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port4', 'url')) ?>" alt=""> 
          <?php } ?>
          <?php if($item_grid_class == 3){  ?>
          <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port4', 'url')) ?>" alt="">
          <?php } ?>
         <?php if($item_grid_class == 4){ ?>
           <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port3_grayscale', 'url')) ?>" alt="">
         <?php } ?>
         <?php if($item_grid_class == 6){ ?>
             <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port2_grayscale', 'url')) ?>" alt=""> 
         <?php } ?>
         <?php if($item_grid_class == 12){ ?>
           <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port1', 'url')) ?>" alt="">
         <?php } ?>
             <div class="project">
          <h5><a href="<?php echo $link ?>"><?php echo get_the_title() ?></a></h5>
          <h6><?php echo esc_html($sort_classes) ?></h6>
                                          </div>                  
                                   </div>          
                            </div>
    

    Replace with these:

     <?php }else if($style == 'grayscale'){ ?>
         <div class="portfolio-item mix <?php echo esc_attr($sort_classes) ?> <?php echo esc_attr($extra_class) ?>  <?php echo esc_attr($style) ?>" data-id="<?php echo get_the_ID() ?>">
         <div class="">
         <?php if($item_grid_class == 5){  ?>
         <a href="<?php echo $link ?>"> <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port4', 'url')) ?>" alt=""> </a> 
          <?php } ?>
          <?php if($item_grid_class == 3){  ?>
          <a href="<?php echo $link ?>"><img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port4', 'url')) ?>" alt=""> </a> 
          <?php } ?>
          <?php if($item_grid_class == 4){ ?>
          <a href="<?php echo $link ?>"><img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port3_grayscale', 'url')) ?>" alt=""> </a> 
           <?php } ?>
           <?php if($item_grid_class == 6){ ?>
           <a href="<?php echo $link ?>"><img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port2_grayscale', 'url')) ?>" alt=""> </a> 
            <?php } ?>
            <?php if($item_grid_class == 12){ ?>
            <a href="<?php echo $link ?>"><img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port1', 'url')) ?>" alt=""> </a> 
            <?php } ?>
            <div class="project">
            <h5><a href="<?php echo $link ?>"><?php echo get_the_title() ?></a></h5>
            <h6><?php echo esc_html($sort_classes) ?></h6>
                                                </div> 
                                                   
                                     </div>          
                            </div>

    Let us know.

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: Title Tags on Pages

    Hello,

    This is not controlled by theme. Please read this article to understand more regarding this.

    Best regards!

    9 years, 9 months ago Mirela
    Participant
    in reply to: Portfolio–Several Questions

    Hello,

    Please go to file single-portfolio.php and find these lines:

     <div class="nav-growpop">
                <?php if(is_object(get_previous_post())): ?>
                <a class="prev" href="<?php echo esc_url(get_permalink(get_previous_post()->ID)); ?>">
                    <span class="icon-wrap"><i class="icon-angle-left"></i></span>
                    <div>
                        <h3><?php echo esc_html(get_previous_post()->post_title); ?></h3>
                        <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(get_previous_post()->ID), 'blog_grid', 'url')) ?>" alt="Previous thumb"/>
                    </div>
                </a>
    
                <?php endif; ?>
                <?php if(is_object(get_next_post())): ?>
                <a class="next" href="<?php echo esc_url(get_permalink(get_next_post()->ID)); ?>">
                    <span class="icon-wrap"><i class="icon-angle-right"></i></span>
                    <div>
                        <h3><?php echo esc_html(get_next_post()->post_title); ?></h3>
                        <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(get_next_post()->ID), 'blog_grid', 'url')) ?>" alt="Next thumb"/>
                    </div>
                </a>
                <?php endif; ?> 
            </div>

    Replace with these:

    <div class="nav-growpop">
                <?php if(is_object(get_previous_post())): ?>
                <a class="next" href="<?php echo esc_url(get_permalink(get_previous_post()->ID)); ?>">
                    <span class="icon-wrap"><i class="icon-angle-right"></i></span>
                    <div>
                        <h3><?php echo esc_html(get_previous_post()->post_title); ?></h3>
                        <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(get_previous_post()->ID), 'blog_grid', 'url')) ?>" alt="Next thumb"/>
                    </div>
                </a>
    
                <?php endif; ?>
                <?php if(is_object(get_next_post())): ?>
                <a class="prev" href="<?php echo esc_url(get_permalink(get_next_post()->ID)); ?>">
                    <span class="icon-wrap"><i class="icon-angle-left"></i></span>
                    <div>
                        <h3><?php echo esc_html(get_next_post()->post_title); ?></h3>
                        <img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(get_next_post()->ID), 'blog_grid', 'url')) ?>" alt="Previous thumb"/>
                    </div>
                </a>
                <?php endif; ?> 
            </div>

    Best regards!

Viewing 15 posts - 7,651 through 7,665 (of 12,542 total)
← 1 2 3 … 510 511 512 … 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