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 ago Mirela
    Participant
    in reply to: Social Icons in Header / Top Widgetized Area

    Hello,

    Have you enabled the top area in General Options > Header Options > Top Widgetized Area, set it ON. And after this go to widgets and add the socials widget to it.
    Let us know.

    Best regards!

    10 years ago Mirela
    Participant
    in reply to: Portfolio Categories from Drop Down in Main Menu

    Hello,

    You can add the menu item as a custom link, but it still won’t lead to that specific category. It can be done with javascript.
    Sorry i can not help with that since it is a personal preference customization and so it is not included in theme support. You can do it yourself or hire a developer to do it for you.

    Best regards!

    10 years ago Mirela
    Participant
    in reply to: Suppress "Project Description" and "Project Details" on Portfolio Items

    Hello,

    Yes, just add this code into your custom css box:

    .portfolio_single ul.info {display: none;}
    

    Best regards!

    10 years ago Mirela
    Participant
    in reply to: Copyright Text Bar

    Hello,

    You need to change the link structure from this: www.polymerfactory.com/dendrimers/
    to this: https://www.polymerfactory.com/dendrimers/.
    Let us know.

    Best regards!

    10 years ago Mirela
    Participant
    in reply to: Problem with theme on wordpress

    Hello,

    What version of theme do you have? What wordpress? What elements are missing? Please send us your site’s wp credentials in a private reply. And some more detailed info on your issues. So we can give them a closer look.

    Best regards!

    10 years ago Mirela
    Participant
    in reply to: Layout Responsiveness

    Hello,

    The table needs css that is removed by the code added in last reply. This happens because all the responsive bootstrap css has been removed from the site.
    If you do not want to reverse back the latest changes then edit the table view with custom css.

    Best regards!

    10 years ago Mirela
    Participant
    in reply to: Service Circle Icon Element and Bullet points

    Hello,

    Can you please send a link where is this?

    Best regards!

    10 years ago Mirela
    Participant
    in reply to: Social media icons

    Hello,

    To increase/decrease socials size, please add this code into your custom css box:

    .footer_social_icons.circle li a i {
        font-size: 16px !important;
    }

    To open in new tab, please go to file \includes\widgets\codeless_socialwidget.php and find these lines:

    echo '<ul class="footer_social_icons '.esc_attr($style).'">';
       if( !empty($cl_redata['facebook']) )
        echo '<li class="facebook"><a href="'.esc_url($cl_redata['facebook']).'"><i class="icon-facebook"></i></a></li>';
       if( !empty($cl_redata['twitter']) )
        echo '<li class="twitter"><a href="'.esc_url($cl_redata['twitter']).'"><i class="icon-twitter"></i></a></li>';
       if( !empty($cl_redata['flickr']) )
         echo '<li class="flickr"><a href="'.esc_url($cl_redata['flickr']).'"><i class="icon-flickr"></i></a></li>';
       if( !empty($cl_redata['google']) )
        echo '<li class="google"><a href="'.esc_url($cl_redata['google']).'"><i class="icon-google"></i></a></li>';
       if( !empty($cl_redata['dribbble']) )
        echo '<li class="dribbble"><a href="'.esc_url($cl_redata['dribbble']).'"><i class="icon-dribbble"></i></a></li>';
       if( !empty($cl_redata['foursquare']) )
        echo '<li class="foursquare"><a href="'.esc_url($cl_redata['foursquare']).'"><i class="icon-foursquare"></i></a></li>';
       if( !empty($cl_redata['linkedin']) )
         echo '<li class="foursquare"><a href="'.esc_url($cl_redata['linkedin']).'"><i class="icon-linkedin"></i></a></li>';
       if( !empty($cl_redata['pinterest']) )
        echo '<li class="pinterest"><a href="'.esc_url($cl_redata['pinterest']).'"><i class="icon-pinterest"></i></a></li>';
       if( !empty($cl_redata['youtube']) )
        echo '<li class="youtube"><a href="'.esc_url($cl_redata['youtube']).'"><i class="icon-youtube"></i></a></li>';
       if( !empty($cl_redata['email']) )
        echo '<li class="email"><a href="'.esc_url($cl_redata['email']).'"><i class="icon-envelope"></i></a></li>';
       if( !empty($cl_redata['instagram']) )
        echo '<li class="email"><a href="'.esc_url($cl_redata['instagram']).'"><i class="icon-instagram"></i></a></li>';
    echo '</ul>';

    Replace with these:

    echo '<ul class="footer_social_icons '.esc_attr($style).'">';
       if( !empty($cl_redata['facebook']) )
        echo '<li class="facebook"><a href="'.esc_url($cl_redata['facebook']).'" target="_blank"><i class="icon-facebook"></i></a></li>';
       if( !empty($cl_redata['twitter']) )
        echo '<li class="twitter"><a href="'.esc_url($cl_redata['twitter']).'" target="_blank"><i class="icon-twitter"></i></a></li>';
       if( !empty($cl_redata['flickr']) )
         echo '<li class="flickr"><a href="'.esc_url($cl_redata['flickr']).'" target="_blank"><i class="icon-flickr"></i></a></li>';
       if( !empty($cl_redata['google']) )
        echo '<li class="google"><a href="'.esc_url($cl_redata['google']).'" target="_blank"><i class="icon-google"></i></a></li>';
       if( !empty($cl_redata['dribbble']) )
        echo '<li class="dribbble"><a href="'.esc_url($cl_redata['dribbble']).'" target="_blank"><i class="icon-dribbble"></i></a></li>';
       if( !empty($cl_redata['foursquare']) )
        echo '<li class="foursquare"><a href="'.esc_url($cl_redata['foursquare']).'" target="_blank"><i class="icon-foursquare"></i></a></li>';
       if( !empty($cl_redata['linkedin']) )
         echo '<li class="foursquare"><a href="'.esc_url($cl_redata['linkedin']).'" target="_blank"><i class="icon-linkedin"></i></a></li>';
       if( !empty($cl_redata['pinterest']) )
        echo '<li class="pinterest"><a href="'.esc_url($cl_redata['pinterest']).'" target="_blank"><i class="icon-pinterest"></i></a></li>';
       if( !empty($cl_redata['youtube']) )
        echo '<li class="youtube"><a href="'.esc_url($cl_redata['youtube']).'" target="_blank"><i class="icon-youtube"></i></a></li>';
       if( !empty($cl_redata['email']) )
        echo '<li class="email"><a href="'.esc_url($cl_redata['email']).'" target="_blank"><i class="icon-envelope"></i></a></li>';
       if( !empty($cl_redata['instagram']) )
        echo '<li class="email"><a href="'.esc_url($cl_redata['instagram']).'" target="_blank"><i class="icon-instagram"></i></a></li>';
    echo '</ul>';

    Save file.

    Best regards!

    10 years ago Mirela
    Participant
    in reply to: Suppress "Project Description" and "Project Details" on Portfolio Items

    Hello,

    Sorry but this is a customization that requires file editing and it is not included in support service. You could hire a developer to do it for you.

    Best regards!

    10 years ago Mirela
    Participant
    in reply to: Background image in slider of Agency 2 doesn’t show

    Hello,

    In page’s General Settings > Sliders Options, you have the option to select one of the available sliders to use (Codeless slider / Revolution / Layerslider / Flex slider) and then after selecting one of the above, you get a drop-down of sliders available for that type of slider. But you had not selected any slider from the available ones, screenshot.

    Best regards!

    10 years ago Mirela
    Participant
    in reply to: WooCommerce Styling and Forum

    Hello,

    Can you please be more specific? Do you want borders only on image boxes? Or all fields in the page? You can add boxes with custom css. Add the code into your custom css box. For example:

    .woocommerce .woocommerce-page div.product div.images img {
        border: 1px solid rgba(204, 204, 204, 0.9);
    }

    Will set borders to images (screenshot).
    -To set border to quantity, add this code:

    .woocommerce #content div.product form.cart div.quantity, .woocommerce div.product form.cart div.quantity, .woocommerce-page #content div.product form.cart div.quantity, .woocommerce-page div.product form.cart div.quantity {
        border: 1px solid #ddd;
        margin-top: 2px;
    }

    -Adding a text with quantity before it (not quite sure what is ‘it’), however is a customization not included in support. Please read our policy.

    Best regards!

    10 years ago Mirela
    Participant
    in reply to: Tower theme help and fixes

    Hello,

    This code is responsible for the removal of clicking action on services: `.services_medium.style_3.wpb_content_element {
    pointer-events: none !important;
    }`
    I removed it from your custom css box. Also i commented out these lines:

    /*.services_medium.style_1:hover .icon_wrapper, .services_medium.style_3:hover 
    .icon_wrapper, .blog-article.timeline-style .timeline .date{background:#fff !important;
    }*/

    Since the background on hover of the services was already set up in the home page’s custom css box, assigning it here too creates the flickering effect. I changed the background color to white in the page’s custom css box.
    Please check your site.

    Best regards!

    10 years ago Mirela
    Participant
    in reply to: How to reduce size of search bar in tower theme

    Hello,

    You can change search width with custom css. Please add this code into your custom css box:

    .search_bar input[type="text"] {
        font-size: 42px;
        height: 100%;
        width: 100%;
        line-height: 80px;
        color: #888;
    }
    .search_bar {width: 100% !important;}

    Edit the values to your wish.

    Best regards!

    10 years ago Mirela
    Participant
    in reply to: Child theme problem

    Hello,

    What exactly did you change the directory name into? Are you using the included child theme of Specular? Please send us your child theme folder so we can test it and check what is causing it.

    best regards!

    10 years ago Mirela
    Participant
    in reply to: background image in row – safari error

    Hello,

    Sorry for the late reply.
    I don’t have an ipad here and that makes it a bit difficult to debug. I added this code into your custom css box:

    /* ----------- iPad 1 and 2 ----------- */
    /* Portrait and Landscape */
    @media only screen 
      and (min-device-width: 768px) 
      and (max-device-width: 1024px) 
      and (-webkit-min-device-pixel-ratio: 1) {
    .section-style.parallax_section   { background-attachment: scroll;  }
    }
    /* ----------- iPad 3 and 4 ----------- */
    /* Portrait and Landscape */
    @media only screen 
      and (min-device-width: 768px) 
      and (max-device-width: 1024px) 
      and (-webkit-min-device-pixel-ratio: 2) {
    .section-style.parallax_section   { background-attachment: scroll;  }
    }
    .iOS-device .section-style.parallax_section { background-attachment: scroll;}

    Please check it and let me know. Send us some screenshots so i can understand better what are you seeing.

    Best regards!

Viewing 15 posts - 8,341 through 8,355 (of 12,542 total)
← 1 2 3 … 556 557 558 … 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