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, 5 months ago Mirela
    Participant
    in reply to: Page without header

    Hello,

    To remove completely the header section, add this code into your custom css box:

    .header_wrapper {
        display: none;
    }

    Let us know.

    Best regards!

    9 years, 5 months ago Mirela
    Participant
    in reply to: Woocommerce: Sitewide notice covers header

    Hello,

    I see you have some errors in your custom css. There were two missing brackets. I fixed them. Please enable the sitewide notice for us to check it up.

    Best regards!

    9 years, 5 months ago Mirela
    Participant
    in reply to: No Blog Comment box on Tower | Business-Driven Multipurpose WP Theme

    Hello,

    By default the blog page does not have a comment section. Only single blog posts have. See our demo.
    I see the comment section doe show up in you blog posts. let us know if this is what you meant.

    Best regards!

    9 years, 5 months ago Mirela
    Participant
    in reply to: Removing Category from Home Page posts

    Hello,

    Sorry for the late reply.
    1-To remove the line under Latest blog title, please add this code into your custom css box:
    .block_title.section_title .divider {display: none;}

    2-To remove the ‘/’ sign in the date, you have to edit the latest_blog.php file. Go to vc_templates/latest_blog.php and find this block:

     $output .= '<ul class="info">';
                                            $output .= '<li>'.get_the_date().'</li>';
                                            $output .= '<li>/</li>';  
                                            $output .= '<li>'.$cats.'</li>';                             
                                        $output .= '</ul>';

    Remove or comment this line from it:

     $output .= '<li>/</li>';  
      $output .= '<li>'.$cats.'</li>';

    Save changes.

    Best regards!

    9 years, 5 months ago Mirela
    Participant
    in reply to: Responsive Header Background

    Hello,

    Please add this code into your custom css box:

    @media (max-width: 767px){
    .header_transparency header#header {
        background: rgba(255, 255, 255, 0) !important;
    }}

    Best regards!

    9 years, 5 months ago Mirela
    Participant
    in reply to: Portfolio L/R related questions

    Hello,

    1-You can make the logo bigger. Just go to General Options > Logo Height and increase the logo height. As for the other requests, they are not possible using theme options. To change the name position to under the logo and add widgets between logo and menu requires code editing and it’s not a supported service.

    2-To style the portfolio go to General Options > Styling Options > Portfolio Styling.
    To remove the separator of portfolio category, go to file tower\includes\view\portfolio\loop-grid.php and find this block:
    https://codeshare.io/G6pkOg
    Replace with these:
    https://codeshare.io/5zyAQb

    3-This customization requires code editing that is not included in this support. Please read more about our support policy here.

    Best regards!

    • This reply was modified 9 years, 4 months ago by Mirela.
    9 years, 5 months ago Mirela
    Participant
    in reply to: mobile menu not showing

    Hello,

    Did you add the !important to it? I inspected the css of your page but the !important is missing. Can you please send some credentials in a private reply? So we can check this closely.

    Best regards!

    9 years, 5 months ago Mirela
    Participant
    in reply to: Tower – Navigation / Row ID Issue

    Hello,

    Do you have all these section id’s in one page? Or are they targeting different sections from different pages?
    This is a One Page structure so you have to set up page as a One Page first. Go to page’s General Settings > Page Options & Style > Use menu as one page menu, set it ON.

    Let us know.

    Best regards!

    9 years, 5 months ago Mirela
    Participant
    in reply to: Mobile view and Visual Composer Portfolio Issues
    This reply has been marked as private.
    9 years, 5 months ago Mirela
    Participant
    in reply to: Remove icon from Codeless Slider slide button

    Hello,

    Please add this code into your custom css box:

    .codeless_slider .swiper-slide .buttons i.moon-arrow-right-5 {
        display: none;
    }

    Let us know.

    Best regards!

    9 years, 5 months ago Mirela
    Participant
    in reply to: Particular menu for pages

    Hello,

    Sorry but this is not possible. Theme does not supports multiple menus.

    Best regards!

    9 years, 5 months ago Mirela
    Participant
    in reply to: Tower About Us Page Disappeared

    Hello,

    I already explained the staff situation in an old topic of yours. That ‘space’ is the placeholder for the staff featured image. In the middle of the featured image is the bar with the staff socials.
    I suggested you add an image for each staff member. Since you did not i assumed this is what you wanted.
    Watch this video tutorial to understand how to configure staff elements.

    I edited out the staff.php file. It does get all your content now.

    Best regards!

    9 years, 5 months ago Mirela
    Participant
    in reply to: Full screen row with Visual Composer

    Hello,

    Sorry for the late reply.
    Visual Composer is fully responsive. So are all it’s elements. So you should not worry regarding it.
    To increase the rows height, go to Row Settings > Padding Top/Padding Bottom and add padding to it (screenshot).
    See result screenshot.
    Do you want something like this: https://codeless.co/specular/parallax/?
    Let us know so i can guide you on customizing it.

    Best regards!

    9 years, 5 months ago Mirela
    Participant
    in reply to: Portfolio Items – Full width and without Project

    Hello,

    Yes, you have to add the custom css block for each post you want to change. The only thing you will change in it, is the post id. Because each post is identified by an unique id.
    Example:
    Post: https://www.maralombardi.it/archives/mara-lombardi-portfolio/urban-art-synesthetic-dark-room
    Code:

    .postid-2794 .portfolio_single.single_portfolio_container .portfolio_single h4 {
        display: none;
    }
    .postid-2794 .portfolio_single.single_portfolio_container .row-fluid .span3 {
        display: none;
    }
    .postid-2794 .portfolio_single.single_portfolio_container .row-fluid .span9 {
        width: 100%;
    }

    screenshot

    Post: https://www.maralombardi.it/archives/mara-lombardi-portfolio/great-vitj-lake-2
    Code:

    .postid-4047 .portfolio_single.single_portfolio_container .portfolio_single h4 {
        display: none;
    }
    .postid-4047 .portfolio_single.single_portfolio_container .row-fluid .span3 {
        display: none;
    }
    .postid-4047 .portfolio_single.single_portfolio_container .row-fluid .span9 {
        width: 100%;
    }

    screenshot
    ..and so on.

    Let us know if you need further help.

    Best regards!

    9 years, 5 months ago Mirela
    Participant
    in reply to: service circle icons

    Hello,

    Please edit the code to this:

    .services_medium img {
        width: 120px !important;
        height: 120px !important;
    }

    The !important gives priority to custom css over theme’s default css.
    Let us know.

    Best regards!

Viewing 15 posts - 6,556 through 6,570 (of 12,542 total)
← 1 2 3 … 437 438 439 … 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