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, 1 month ago Mirela
    Participant
    in reply to: Specular import issue

    Hello,

    Please make sure you have sufficient memory and execution time limit. This usually happens when the time limit has exceeded, since there is a lot of data to be imported. You can ask your hosting provider to increase it for you. If you want, you can send us your wp credentials so we can do it for you.

    Best regards!

    11 years, 1 month ago Mirela
    Participant
    in reply to: Installation Issues – Please Help

    Hello,

    Please can you write your site credentials in a private reply, so I can install and configure the theme for you?

    Best regards!

    11 years, 1 month ago Mirela
    Participant
    in reply to: URGENT ::::: TROUBLE with background image in Eye Catching view

    Hello,

    -Fullscreen: add these lines into your custom css box:

    .fullscreen-blog-article .content.background--light {
      color: #EDE9E9; 
      background-color: rgba(168, 154, 109, 0.5); 
    }

    color – change font color;
    background-color – change color and transparency (the 0.5 value) of colored layer underneath. Result.

    -Articles: I do not see much space, however please add these lines into your custom css box:

    #comments { margin-top: 0; padding-top: 5px; }
    .single .blog-article.standard-style { margin-bottom: 0;}
    form { margin: 0 0 0px;}
    #content { padding-bottom: 35px;}

    This should be the result.

    Best regards!

    • This reply was modified 11 years, 1 month ago by Mirela.
    11 years, 1 month ago Mirela
    Participant
    in reply to: Service Icon Clickability

    Hello,

    By default the icons in services medium are not links. But if you want them as links too, then please go to file vc_templates\services_medium.php, and find this line:

     if($icon_bool == 'image' && !empty($image)):
                $output .= '<img src="'.esc_url(codeless_image_by_id($image, '', 'url')).'" alt="" />';
            endif;

    Replace with this:

    if($icon_bool == 'image' && !empty($image)):
                $output .= '<a href="'.esc_url($data['link']).'"><img src="'.esc_url(codeless_image_by_id($image, '', 'url')).'" alt="" /></a>';
            endif;

    Save file.

    Best regards!

    11 years, 1 month ago Mirela
    Participant
    in reply to: SEARCH RESULTS

    Hello,

    You can find ‘Search Results’ in file includes\view\page_header.php. The search ordering requires customization which is not included in support. Please follow this link, to guide you how to achieve it.
    To show 4-5 lines of content from page’s search result, add content into page’s excerpt box. (go to Screen Options and check Excerpt)

    Best regards!

    11 years, 1 month ago Mirela
    Participant
    in reply to: Menu isn’t fully displayed on mobile phones and vertical tablets

    Hello,

    Please add these lines into your custom css box:

    @media (max-width:767px) {
    .vc_custom_heading h2 {
      line-height: 25px !important;
    }
    }

    Best regards!

    11 years, 1 month ago Mirela
    Participant
    in reply to: Mobile Menu Not Showing

    Hello,

    Please add these lines into your custom css box:

    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 {
      color: #1A1919;
    }

    Best regards!

    11 years, 1 month ago Mirela
    Participant
    in reply to: Header not responsive in browser

    Hello,

    The green bar is an element created via a third party plugin which we have not tested with the theme. We can not give support on that. Please read carefully plugin’s documentation or contact their support.
    As for the header, please add these lines into your custom css box:

    .blog .header_page.centered.without_shadow.no_parallax {
      padding-top: 151px;
    }
    .header_page.centered .overlay { display:none;}

    Best regards!

    11 years, 1 month ago Mirela
    Participant
    in reply to: Revolution Slider Transitions

    Hello,

    Please read this tutorial for more information. Or watch these videos.

    Best regards!

    11 years, 1 month ago Mirela
    Participant
    in reply to: Image with Overlay Header

    Hello,

    1-I added this code: .single-post .breadcrumbss { display: none;} into your custiom css box, to remove breadcrumbs in posts only. Where titles are longer. If you want to remove them through all site, edit this code by deleting only the “.single-post”.
    -I changed the font size in Styling Options > Default Page Header > Normal Style No Subtitle Title Typography to 20 and added this css: .single-post .header_page h1 { line-height: 40px; text-align: center;} to customize and fully display your long titles.
    -I added this code:

    @media (max-width:767px){
        .single-post .header_page h1 { line-height: 25px; text-align: center;}
        .single-post .header_page.normal h1 { font-size: 13px !important;}
    }

    for the responsive titles.

    2- I do not see the small menu in your site any more. Did you remove it? image

    3-For the menu sub-items, i added this code:

    nav .menu > li > ul.sub-menu li > .sub-menu {
      margin-left: 200px !important;
    }

    This is the result.

    Let us know if you need further help.

    Best regards!

    • This reply was modified 11 years, 1 month ago by Mirela. Reason: images
    11 years, 1 month ago Mirela
    Participant
    in reply to: Title Header on the left without Breadcrumbs

    Hello,

    To remove breadcrumbs please add these lines into your custom css box:

    .breadcrumbss {
      display: none;
    }

    Best regards!

    11 years, 1 month ago Mirela
    Participant
    in reply to: photo resizing

    Hello,

    If you are using portfolio with two colums, edit:add_image_size( 'port2', 825, 340, true );
    If you are using portfolio 3 columns with grayscale, edit this:add_image_size( 'port3_grayscale', 627, 470, true ); ..so on if you will use other portfolio types and want to change the image size.

    Best regards!

    11 years, 1 month ago Mirela
    Participant
    in reply to: Menu isn’t fully displayed on mobile phones and vertical tablets

    Hello,

    Please add these lines into your custom css box:

    @media(max-width:767){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 {
      color: #0D0D0D;
    }
    }

    Best regards!

    11 years, 1 month ago Mirela
    Participant
    in reply to: Link Color

    Hello,

    Add this code into your custom css box:

    a {
      color: rgb(165, 32, 103) !important;
    }

    Edit the color to your need.
    Beware that it will change font color of All links (including Headers, as they are links themselves) If you want any specific link to change color, send us the page’s link of it so we can give a more specific code.

    Best regards!

    11 years, 1 month ago Mirela
    Participant
    in reply to: Font Awesome Icons not showing
    This reply has been marked as private.
Viewing 15 posts - 12,316 through 12,330 (of 12,542 total)
← 1 2 3 … 821 822 823 … 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