jbush82
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Bootstrap Ultimate] Custom CSS Not TakingI tried tackling this from another approach, which was to create a child theme. Doing this killed formatting for both the child theme and the main theme. Even deleted directories for both and tried to rebuild from scratch, all to no avail.
Forum: Themes and Templates
In reply to: [Bootstrap Ultimate] Navbar Menu and Disabling BrandingLooks like I was able to address the alignment issue with custom CSS:
/* Remove the navbar branding */ .navbar-header { display: none; }Forum: Themes and Templates
In reply to: [Customizr] Modify navbar / menu width and resizing dynamicness… I’m making all changes in a child theme.
Forum: Themes and Templates
In reply to: [Customizr] Modify navbar / menu width and resizing dynamicnessI’ve done some digging in the included css files and tried messing with the following regarding the “non-mobile” menu width… no success yet:
.navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container { width: 700px; } .span12 { width: 700px; } .span11 { width: 700px; } .span10 { width: 700px; }Forum: Themes and Templates
In reply to: [Customizr] Modify navbar / menu width and resizing dynamicnessI’ve actually spent some time going through the CSS guide and the snippets, unfortunately to no avail for what I’m trying to do.
I’ve tried the following so far:
Modify width of menu:
.navbar .navbar-inner { max-width: 60%; }Ruduce the width for the “trigger” to switch to the mobile menu… no idea where to even start on this one
3. Removing the social lings row:
.social-block { display:none; } .tc-header { display:none; } .site-description { display:none; } h2.site-description { display:none; }My guess is I’ll have to somehow modify the height to half of what it is for the navbar wrapper, but I’m not sure. I presume if I don’t hide the social links and tagline first, that’ll mess up the resize too.
Forum: Themes and Templates
In reply to: [Customizr] Child Theme – Adding a "Header" Widget AreaJust wanted to give a quick update on this… after some further thinking, I decided to change the location of the widget (at least for my purposes). Instead of placing it before the entire header, I placed it after the navbar. I did this by changing “__before_header” to “__after_navbar”… I also played around with “before_navbar” (strange that this wouldn’t have the preceding __).
The second part of the code looks like this for placing it after the navbar but within the header:
// Place the widget before the header add_filter ('__after_navbar', 'add_my_widget'); function add_my_widget() { if (function_exists('dynamic_sidebar')) { dynamic_sidebar('Extra Widget Before Header'); } }The second part of the code looks like this for placing it before the navbar but within the header:
// Place the widget before the header add_filter ('before_navbar', 'add_my_widget'); function add_my_widget() { if (function_exists('dynamic_sidebar')) { dynamic_sidebar('Extra Widget Before Header'); } }Forum: Themes and Templates
In reply to: [Customizr] Child Theme – Adding a "Header" Widget AreaPerfect, exactly what I was looking for.
Thanks!
Forum: Hacks
In reply to: Plugin Development – Facebook Integration for User Login and JoinI’ve given this some more thought and effort since originally posting, and I’ve basically created a go-between script for WP and FB to interface with. I’m passing information (non-sensitive) through the URL and then using $_GET to pull it down. So far it appears to be working for my needs, but I’m not completely finished yet.
With respect to the echo, thanks for the tip regarding do_shortcode(), hadn’t run across that yet.
Forum: Themes and Templates
In reply to: [Customizr] Comments on PostsElectricFeet is correct hassan.Zia, this is not a Customizr issue but I think I can help. WordPress does not modify the post settings (such as allowing comments) on existing posts or pages when you change the settings, only new posts or pages will inherit the changes. As such, each post will need to be edited to update the allow comments option. To do this, follow these simple steps.
1. Login to your admin panel
2. Click posts or pages, whichever you want to disable comments on
3. Hover over the title of the post or page, then click Quick Edit
4. Uncheck the box, “Allow Comments”
5. Click Update
6. Rinse and repeatHope this helps!
Forum: Themes and Templates
In reply to: [Customizr] Truncated PostsAwesome, I certainly look forward to the release!
Forum: Themes and Templates
In reply to: Pages, Subpages, and Menu "Slider"Found a plugin to do exactly what I’m looking for. Called JQuery Accordian Menu.
Forum: Themes and Templates
In reply to: Pages, Subpages, and Menu "Slider"I’m thinking this might be possible with some PHP, but I’m still learning WP and could use some help. Here is what I’m thinking. Put all sub-pages into an array along with its parent page. Then list each page regardless of whether or not they are a sub-page or parent page. Remove duplicates from the second list that were previously identified in the first, and now you have an object for each page. Is it then possible to assign CSS classes to each item for styling purposes. What about modifying the link so that the parent link executes JS rather than go to an actual WP page?
Forum: Themes and Templates
In reply to: Learning to Theme – 2.X Books / Guides Still Relevant?Anybody? I’m really interested to here some insight on this. I’d really like to do what I can to prevent from learning stuff that may now be irrelevant.
Thanks,
J. Bush