Forum Replies Created
-
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!
in reply to: Woocommerce: Sitewide notice covers headerHello,
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!
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!
in reply to: Removing Category from Home Page postsHello,
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!
in reply to: Responsive Header BackgroundHello,
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!
in reply to: Portfolio L/R related questionsHello,
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/5zyAQb3-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.
in reply to: mobile menu not showingHello,
Did you add the
!importantto it? I inspected the css of your page but the!importantis missing. Can you please send some credentials in a private reply? So we can check this closely.Best regards!
in reply to: Tower – Navigation / Row ID IssueHello,
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!
in reply to: Mobile view and Visual Composer Portfolio IssuesThis reply has been marked as private.in reply to: Remove icon from Codeless Slider slide buttonHello,
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!
in reply to: Particular menu for pagesHello,
Sorry but this is not possible. Theme does not supports multiple menus.
Best regards!
in reply to: Tower About Us Page DisappearedHello,
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!
in reply to: Full screen row with Visual ComposerHello,
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!
in reply to: Portfolio Items – Full width and without ProjectHello,
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%; }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!
in reply to: service circle iconsHello,
Please edit the code to this:
.services_medium img { width: 120px !important; height: 120px !important; }The
!importantgives priority to custom css over theme’s default css.
Let us know.Best regards!
-
This reply was modified 9 years, 4 months ago by