goredshift
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [WP RootStrap] CSS question to modify top headerHere is your call out.
<div id="undefined-sticky-wrapper" class="sticky-wrapper" style="height: 50px;">
If you adjust this in your CSS and set !important you should be able to adjust your height. This is for the wrapper.
You can also adjust this: (DEFAULT)
.navbar.navbar-default { background-color: #fff; font-weight: 200; margin-bottom: 0; margin-top: -2px; border-bottom: 1px solid #eee; position: relative; z-index: 999999; width: 100%; }
ADD
.navbar.navbar-default { background-color: #fff; font-weight: 200; margin-bottom: 0; margin-top: -2px; border-bottom: 1px solid #eee; position: relative; z-index: 999999; width: 100%; height: 100px; }
Set the height as you desire and it will adjust the wrapper dynamically.
I hope this helps.
GL
Forum: Themes and Templates
In reply to: [WP RootStrap] CSS question to modify top headerWhat is the URL to your staging site?
GLForum: Themes and Templates
In reply to: [WP RootStrap] Visual Composer Shortcode FilteringIs anyone following the support for this theme?
GL
Forum: Themes and Templates
In reply to: [WP RootStrap] Visual Composer Shortcode FilteringI have narrowed it down to REV Slider is the only code not being parsed. In other themes it is parsed fine but not in wp=rootstrap. Please advise as soon as possible.
GL
I have used the exact folder structure.
I am not great with PHP but I am learning. I am not real comfortable writing hooks, but I will study them. My adjustments are fairly mundane and worked fine in my child theme prior to upgrading recently.
I have two specific functions I need to work in modifying the core files.
1. I want to move the three boxes down to the bottom of the content area (which is done now by moving the variable to to bottom of that page via the header.php.
2. I want to add a slider to the /category/membership page and change the .archive-title text. I had edited it previously in the /parts/class-content-posts.php but that variable has been moved from what i can tell in the latest version.
Thoughts?
Well, yes and no. I was able to create the child theme with the themify plugin. But, I cannot add any files ie. header.php / functions.php without it breaking the site. Do you know where I can find documentation or posts for protocol / sytnax for adding files to the root child theme folder as well as customizations to the Parts folder?
Thanks!
Forum: Themes and Templates
In reply to: [Customizr] Blog Banner Image Not ShowingI just updated and the theme totally hosed my child theme.
The reason I hard coded a banner was that the slider was not working on the blog page / post page.
I guess I will not try to fix my child theme.. UGH! ??
Forum: Themes and Templates
In reply to: [Customizr] Blog Banner Image Not ShowingI have deprecated the previous code so you can see what i mean.
Thanks.
Forum: Themes and Templates
In reply to: [Customizr] Blog Banner Image Not ShowingI have hard coded an image in a separate header called header-blog.php
<div class="carousel-inner"> <div class="item active"> <div class="carousel-image slider-full"> <img src="<?php bloginfo('url');?>/assets/mtns.jpg" class="attachment-slider-full"> </div> </div> </div><!-- /.carousel-inner --></div>
The code snippet not working is.. <?php do_action ( ‘__slider’ ) ?>
The blog main posts page and the single page are not displaying.
Does that help? Thanks!!
Forum: Themes and Templates
In reply to: [Path] Customizr Blog Page SliderCan anyone please comment or provide some feedback on this?
Forum: Themes and Templates
In reply to: [Customizr] Home Content Feature(s) Relocate Below Page ContentI figtured it out.. in index.php
move..
do_action( '__fp_block' );
below line 33 and in the php call out for the footer.
Forum: Fixing WordPress
In reply to: Enabling html in excerptsHey.. question.. may be a dumb one.. where do you access the optional excerpt? Thanks.
Forum: Fixing WordPress
In reply to: Page Title same as most recent blog post titleThe code above is being called from my header.php file. I am not sure the code you are looking for is in this file. I am attaching the header code from content.php
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header class="entry-header"> <?php if ( is_sticky() ) : ?> <hgroup> <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <h3 class="entry-format"><?php _e( 'Featured', 'twentyeleven' ); ?></h3> </hgroup> <?php else : ?> <h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1> <?php endif; ?> <?php if ( 'post' == get_post_type() ) : ?> <div class="entry-meta"> <?php twentyeleven_posted_on(); ?> </div><!-- .entry-meta --> <?php endif; ?> <?php if ( comments_open() && ! post_password_required() ) : ?> <div class="comments-link"> <?php comments_popup_link( '<span class="leave-reply">' . __( 'Reply', 'twentyeleven' ) . '</span>', _x( '1', 'comments number', 'twentyeleven' ), _x( '%', 'comments number', 'twentyeleven' ) ); ?> </div> <?php endif; ?> </header><!-- .entry-header -->
Is this what you are looking for? Thanks for looking at it.
Forum: Themes and Templates
In reply to: HTML Tags Missing After Upgrade to 3.2Oh and one more thing. If I reopen the post and hit update. It automatically strips all <p> tags out. This just happened please see link now.
-GL
Forum: Themes and Templates
In reply to: HTML Tags Missing After Upgrade to 3.2In the item in question I have manually inserted the ones in the first paragraph and the others are the default. The formatting looks good in the visual but if you go to HTML the tags that are supposed to be there are not there and therefore not reflected on the site. Sorry for any confusion, I should have mentioned the manually inserted <p> tag before.
-GL