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

  • 11 years, 3 months ago Ruco
    Keymaster
    in reply to: Padding between Rows

    Hello,

    Here is the custom css code for that:

    .wpb_row.section-style, .wpb_row.standard_section {
      margin-bottom: 85px;//change the margin here
    }

    Best regards!

    11 years, 3 months ago Ruco
    Keymaster
    in reply to: Title Heading not showing up correctly

    Hello,

    Please add this code instead of the above:

    .block_title.column_title.inner-inline_border h1 {
      background: #F5F5F5;
    }
    
    @media (max-width: 767px){
    .block_title.column_title.inner-inline_border:after {
    display:none;
    }
    }
    

    Best regards!

    11 years, 3 months ago Ruco
    Keymaster
    in reply to: Blocks overlap in page content

    Hello,

    Can you show us your site url so I can check the issue with the separator line?

    Best regards!

    11 years, 3 months ago Ruco
    Keymaster
    in reply to: Media library empty

    Hello,

    You must select ‘import attachments’ before importing dummy content.
    But they may not be imported all of them, if you have execution time limits and memory limits on server.
    Can you show us your site url so I can check the issue with the separator line?

    Best regards!

    11 years, 3 months ago Ruco
    Keymaster
    in reply to: Remove photo captions from gallery

    Hello,

    Please add this css code:

    .pp_default .pp_description {
      display: none !important;}

    Best regards!

    11 years, 3 months ago Ruco
    Keymaster
    in reply to: Image with Overlay Header

    Hello,

    1. Add this code at Custom Css Box:

    .header_shadow_full .header_wrapper {
      -moz-box-shadow:none;
      -webkit-box-shadow: none;
      box-shadow: none;
    }

    2. can see your logo, have fixed the issue?
    3. You must change menu font color at general options -> menu options.
    5. Select Fixed background position at page options https://www.clipular.com/c/4841145730334720.png?k=FsrmOZchy4kRf402kufdJ_FuKFE

    6. You must turn on subtitle on page options https://www.clipular.com/c/5337134358593536.png?k=GhEzI0RDKMqcrv6W5lk2oQUMxpo

    7. Top navigation can’r be displayed on scroll window

    8. Add this css code:

    nav .menu > li > ul.sub-menu, nav .menu > li > ul.sub-menu ul {
    
      top: 74%;}

    Best regards!

    • This reply was modified 11 years, 3 months ago by Ruco.
    11 years, 3 months ago Ruco
    Keymaster
    in reply to: Show all Portfolios on One Page ?

    Hello,

    Please edit the file ‘specular/includes/core/codeless_routing.php’.

    Find the lines:

    switch($cl_redata['portfolio_columns']){
    			case '1':
    				$p_per_page = 3;
    			    break;
    			case '2':
    				$p_per_page = 6;
    				break;
    			case '3':
    				$p_per_page = 9;
    				break;
    			case '4':
    				$p_per_page = 12;
    				break;
    			case '5':
    				$p_per_page = 10;
    				break;
    		}

    and replace with:

    switch($cl_redata['portfolio_columns']){
    			case '1':
    				$p_per_page = 999;
    			    break;
    			case '2':
    				$p_per_page = 999;
    				break;
    			case '3':
    				$p_per_page = 999;
    				break;
    			case '4':
    				$p_per_page = 999;
    				break;
    			case '5':
    				$p_per_page = 999;
    				break;
    		}

    Best regards!

    11 years, 3 months ago Ruco
    Keymaster
    in reply to: Change Line Width of Skills Pie Chart

    Hello,

    Please edit the file ‘specular/js/jquery.easy-pie-chart.js’.
    Find the lines:

     $.easyPieChart.defaultOptions = {
          barColor: '#ef1e25',
          barColor2: '#ef1e25',
          trackColor: '#f2f2f2',
          scaleColor: '#dfe0e0',
          lineCap: 'round',
          size: 110,
          lineWidth: 3,

    and change the lineWidth(in px).

    Best regards!

    11 years, 3 months ago Ruco
    Keymaster
    in reply to: Portfolio Item Header Problem

    Hello,

    Please add this css style:

    @media (max-width: 979px)
    .header_3 .top_wrapper {
      padding-top: 100px !important;
    }

    Best regards!

    11 years, 3 months ago Ruco
    Keymaster
    in reply to: Menu on mobile

    Hello,

    Please add this css code at Custom Css Code at general options:

    nav .codeless_custom_menu_mega_menu ul>li h6, .menu-small ul.menu .codeless_custom_menu_mega_menu h6, .menu-small ul.menu > li > a {
      display: block;
    }

    Best regards!

    11 years, 3 months ago Ruco
    Keymaster
    in reply to: PriceTable replace button

    Hello,

    Sorry, it’s not possible.
    If you want to edit the button of the price list, this is the price list file: specular/vc_templates/price_list.php

    Best regards!

    11 years, 3 months ago Ruco
    Keymaster
    in reply to: SAFARI Problems

    Hello,

    About the page header. I notice the issue on this page https://www.vi-group.at/?page_id=11
    You haven’t selected the page header style, I did and now it’s OK.

    About the issue of the icons (I notice it on homepage with tv icon) use this css code.

    .moon-tv:before {
      line-height: 90px;
    }
    

    Please can you show me the link or a screenshot of the price list issue?

    Best regards!

    11 years, 3 months ago Ruco
    Keymaster
    in reply to: Problem with the Google Fonts

    Hello,

    As the font’s are displayed correctly on browser but not on old version browsers is a browse issue. I don’t know how I can help you with it.

    In which browser have you encountered the issue?

    Best regards!

    11 years, 3 months ago Ruco
    Keymaster
    in reply to: editing the single portfolio

    Hello,

    Sorry, use this code:

    .portfolio_single h4, .portfolio_single h4{display:none;}
    

    Best regards!

    • This reply was modified 11 years, 3 months ago by Ruco.
    11 years, 3 months ago Ruco
    Keymaster
    in reply to: Image Sizes?

    Hello,

    Sorry you can’t use different thumbnail sizes in a portfolio template. But you can change them by using css. Assign an image size for the portfolio images them customize the images sizes as you want with css. You can add css code at Custom Css Box at general options.

    Best regards!

Viewing 15 posts - 2,356 through 2,370 (of 3,073 total)
← 1 2 3 … 157 158 159 … 203 204 205 →

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