ThemeForest

Zig Zag - Responsive WordPress Template

How to edit text below the title of the section?

This is the content of Excerpt field. If you don’t see the Excerpt field, click on SCREEN OPTION button near the top of the screen and tick the Excerpt checkbox.

I don’t see the Title in Boxed Text shortcode.

Check if you have links in title. If you do, replace ” with ’ in href attribute (you must use HTML editor).
[bra_boxed_text Title="Hello. We are <a href="http://themeforest.net/user/Brankic1979">Brankic1979</a>, one of <a href="http://themeforest.net">ThemeForest's</a> top authors." Description="We like to make things for web, in fact we are little bit too obsessed. In fact we earn money whilst working on things we're totally in love with. Admit, you're jealous?"]
The problem is if you edit this page next time in Visual editor, because WP removes ’ and insert ”, so always open page in HTML editor if you want to have link in Title in Boxed text.

I don’t see filters in portfolio section.

You must have Portfolio category with subcategories. These subcategories are filters.

Select this parent category in custom field “Select Category with Filters (for Portfolio)”

I want to scroll to the top of the page when I click on first menu item.

First see what’s the ID of first section. Hover the 1st menu item and remember the value after # . (If the 1st menu item is Home, this value is home).

Now go to Brankic Panel and paste this to Extra JavaScript
jQuery(document).ready(function($) { 
     $("a[href='#home']").attr("href", "#top")
});

ps: Of course, replace “home” with your ID of 1st section.

I don’t see slider (I’ve inserted all slides and content in Brankic Panel -> Slider).

You have to select SLIDER in “Insert slider or contact form” custom field on the page where you want to show slider.

I don’t see blog posts in my blog section.

You have to select category with your blog posts via custom field on your blog page.

How do I reduce the amount of blank space in between the sections?

Add this code in Extra CSS in Brankic Panel
.content-wrapper {
    margin: 0 0 100px !important;
}

I would like to hide some pages.

Add this to Extra JavaScript (change number in bracket and ID-TO-HIDE)
$(document).ready(function($){
   $("#menu li:nth-child(6)").css("display", "none");
   $("#ID-TO-HIDE").css("display", "none");
});

How can I set the picture for a team member?

You have to insert it visual editor after inserting shortcode

I can’t have nice aligned layout.

Try to add divider between sections. There is a shortcode button for this.

Remove pinned menu

From javascript/custom.js remove (or comment) these blocks of code

How to remove View more stuff in Footer and make it always visible?

Add this to Extra JavaScript
jQuery(document).ready(function($){
$(".trigger-footer").remove();
var bottom_h = parseInt($("#footer-bottom").height() + 30);
$(".footer-content-wrapper").css("bottom", bottom_h)
$(".footer-content-wrapper").slideToggle("fast");
});
and this to Extra CSS
.footer-content-wrapper {display: block !important;}

How to keep pinned menu always on?

To keep pinned menu always on add this to Extra CSS
.pinned {display: block !important;}
Add this to Extra JavaScript
jQuery(document).ready(function($) {
$("#menu").addClass("pinned");
if ($("#wpadminbar").length > 0) {
            $(".pinned").css("top", "28px");
}
})
and from custom.js delete (or comment with // before each line)
$("#menu").slideUp(function(){                        $("#menu").removeClass("pinned").fadeIn();
});
by
by
by
by
by