vee
Forum Replies Created
-
I’m glad that you found the problem and fixes.
https://github.com/OkveeNet/bootstrap-basic
I’m not sure does this work with iframe. I didn’t test it.
Cloak video element (video element or embeded video) with
<div class="flexvideo">...your video...</div>However congrats to you that you found the fix.
Forum: Themes and Templates
In reply to: [Bootstrap Basic] Navigation Bar Clicks and Non-showing SubMenusHello @yush
1) No, You cannot make it just hover and submenu appears by default. Bootstrap v.3 menu must click to active submenu but you can create your css to change this. Please take a look at this web page. How to make twitter bootstrap menu dropdown on hover rather than click (find Bootstrap 3 on the page)
2)Yes, you are able to see all submenu on click. Please see this screenshot of admin page. And this is front-end page. Please make sure that your other css is not the cause of this problem.
3)As i replied on 1), the Bootstrap v.3 itself did not support hover and display submenu and you have to make sure that the menu you created will be match Bootstrap’s navbar element style. Please see http://getbootstrap.com/components/#navbar Or look at my demo website.
Forum: Reviews
In reply to: [Bootstrap Basic] Works wellThank you @paulmyatt
Forum: Themes and Templates
In reply to: [Bootstrap Basic] $main_column_sizeHello @arudd
Please make sure that you set the column size of sidebar at:
sidebar-left.php
sidebar-right.phpAnd please make sure that the conditions and column size was calculated correctly at inc/template-functions.php
Refer from original code:
if (!function_exists('bootstrapBasicGetMainColumnSize')) { /** * Determine main column size from actived sidebar * * For theme designer: * By using this column size, Bootstrap grid size is 12. * You may change grid size of sidebar column to number you want; example sidebar-left.php grid 2, sidebar-right.php grid 3. * Get Bootstrap grid size minus total sidebar grid size as conditions below this line. * Both sidebar active. (12-2-3) = 7. Main column size is 7. * Only left sidebar active. (12-2) = 10. Main column size is 10. * Only right sidebar active. (12-3) = 9. Main column size is 9. * No sidebar active. Main column is 12. * Now, you write the condition above into the function below and return column size value. * * @return integer return column size. */ function bootstrapBasicGetMainColumnSize() { if (is_active_sidebar('sidebar-left') && is_active_sidebar('sidebar-right')) { // if both sidebar actived. $main_column_size = 6; } elseif ( (is_active_sidebar('sidebar-left') && !is_active_sidebar('sidebar-right')) || (is_active_sidebar('sidebar-right') && !is_active_sidebar('sidebar-left')) ) { // if only one sidebar actived. $main_column_size = 9; } else { // if no sidebar actived. $main_column_size = 12; } return $main_column_size; }// bootstrapBasicGetMainColumnSize }Forum: Themes and Templates
In reply to: [Bootstrap Basic] Main column sizeyou can change side bar left and right size at
sidebar-left.php
sidebar-right.phpForum: Themes and Templates
In reply to: [Bootstrap Basic] Flyout menu of right sidebar and left sidebarBy default, Bootstrap v3 has no fly-out menu or push menu like that.
You have to manually modify the code in this theme.
You are freely to make it your own theme, so you can make any change you like.Forum: Themes and Templates
In reply to: [Bootstrap Basic] Recommended Way To Use BB: Starter Or Parent?Hello @schuurmudgeon
I did not said ‘not creating a child theme’ or not recommend or anything like that.
For Bootstrap Basic theme, you can create child theme or you can even make it your own parent theme. 🙂
The pros of make it your parent theme is it is no need dependency. I think.
The cons of make child theme… I have no idea.Sorry if i misunderstand your post.
Forum: Reviews
In reply to: [Bootstrap Basic] Nice but not 100%Yes, please. Swedish language is welcome.
However i have Github page for this theme. here: https://github.com/OkveeNet/bootstrap-basic
You can pull request there.
Forum: Reviews
In reply to: [Bootstrap Basic] Nice but not 100%Thank you. It was updated in 1.0.3.3 and it is now live.
Forum: Themes and Templates
In reply to: [Bootstrap Basic] REQUEST: Move bootstrap-basic-styleThe new version is now live.
Forum: Themes and Templates
In reply to: [Bootstrap Basic] REQUEST: Move bootstrap-basic-styleYes, uploaded. Please wait until moderator reviewed and approved.
However you can see the code changes at Github (https://github.com/OkveeNet/bootstrap-basic) but i do not recommend to download from there.
Forum: Themes and Templates
In reply to: [Bootstrap Basic] Change Nav Dropdown to Split ButtonYou may use html widget to write it for your own.
Or you can find widget plugin by the others (if there is one) to work in this case.If you want to edit the code I can only suggest you to the point where it is generate navbar.
https://github.com/OkveeNet/bootstrap-basic/blob/master/inc/BootstrapBasicMyWalkerNavMenu.php
atpublic function start_el(...)But i don’t think you can manage split dropdown button by using WordPress menu management.
Forum: Themes and Templates
In reply to: [Bootstrap Basic] GitHubIt’s done.
https://github.com/OkveeNet/bootstrap-basicDid you ever modify anything? Because it has only one declared function.
Maybe you modify somewhere and declare the same function name or maybe you include this file twice.