1200ug
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Cannyon] Access to block contents under headerYes, I would like to know how to remove this block of text also. The part I’m referring to is just below the header image.
Picture here – https://imgur.com/a/y5oOf
Forum: Themes and Templates
In reply to: [Cannyon] Header display issueI’m having the same problem as the first poster. No matter what size image I add, it distorts them. The images turn out like the following: https://imgur.com/9lfVf70
Forum: Themes and Templates
In reply to: [Theme: Sydney] Vertically aligning main menu itemsNo, what I mean is I want the menu items to be vertically aligned in the black bar (black navigation bar appears when you scroll down a little). Right now, the menu items are at the top of the black box, rather than in the centre.
Forum: Themes and Templates
In reply to: [Theme: Sydney] Removing page titleAnd how can I remove the sidebar on “Contact” and “About”, so they have the same column structure as the homepage? The only files in my child theme (child theme was automatically generated by the parent theme) are style.css, functions.php and screenshot.jpg, so I can’t look at how they modified the column layout.
Forum: Themes and Templates
In reply to: [Theme: Helsinki] Very annoying styling problemGreat!
Forum: Themes and Templates
In reply to: [Theme: Helsinki] Very annoying styling problemThat has worked, thanks a lot.
Do you know why it wasn’t working before the
!important
tag?Forum: Themes and Templates
In reply to: [Theme: Helsinki] Very annoying styling problemSorry, I forgot to add that.
Thanks for the advice, I’ll give it a go, and let you know if I have problems ??
Forum: Fixing WordPress
In reply to: Random Speech Mark at the End of the_contentThanks for highlighting my very bad observation skills ??
I don’t know how I missed it!
Thank you!
Resolved
Forum: Fixing WordPress
In reply to: Random Speech Mark at the End of the_contentSorry, I thought I had used the guidelines for posting the code. The full code for content.php is the following:
<?php /** * Template for displaying content * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ ?> <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(); ?>" 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(); ?>" 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 --> <?php if ( is_search() | is_home() | is_archive() ) : // Edit this to show excerpts in other areas of the theme?> <div class="entry-summary"> <!-- This adds the post thumbnail/featured image --> <div class="excerpt-thumb"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"> <?php the_post_thumbnail('thumbnail', 'class=alignleft'); ?></a></div> <?php the_content('Continue reading '); ?> </div><!-- .entry-summary --> <?php else : ?> <div class="entry-content"> <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?> <?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'twentyeleven' ) . '</span>', 'after' => '</div>' ) ); ?> </div><!-- .entry-content --> <?php endif; ?>" <footer class="entry-meta"> <?php $show_sep = false; ?> <?php if ( is_object_in_taxonomy( get_post_type(), 'category' ) ) : // Hide category text when not supported ?> <?php /* translators: used between list items, there is a space after the comma */ $categories_list = get_the_category_list( __( ', ', 'twentyeleven' ) ); if ( $categories_list ): ?> <span class="cat-links"> <?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-cat-links', $categories_list ); $show_sep = true; ?> </span> <?php endif; // End if categories ?> <?php endif; // End if is_object_in_taxonomy( get_post_type(), 'category' ) ?> <?php if ( is_object_in_taxonomy( get_post_type(), 'post_tag' ) ) : // Hide tag text when not supported ?> <?php /* translators: used between list items, there is a space after the comma */ $tags_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) ); if ( $tags_list ): if ( $show_sep ) : ?> <span class="sep"> | </span> <?php endif; // End if $show_sep ?> <span class="tag-links"> <?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); $show_sep = true; ?> </span> <?php endif; // End if $tags_list ?> <?php endif; // End if is_object_in_taxonomy( get_post_type(), 'post_tag' ) ?> <?php if ( comments_open() ) : ?> <?php if ( $show_sep ) : ?> <span class="sep"> | </span> <?php endif; // End if $show_sep ?> <span class="comments-link"><?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentyeleven' ) . '</span>', __( '<b>1</b> Reply', 'twentyeleven' ), __( '<b>%</b> Replies', 'twentyeleven' ) ); ?></span> <?php endif; // End if comments_open() ?> <?php edit_post_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?> </footer><!-- .entry-meta --> </article><!-- #post-<?php the_ID(); ?> -->
Deactivating the plugins doesn’t seem to fix the problem unfortunately.
damiroquai, can you offer some advice as to weather it’s possible to either add the h1 title to myfixed, or just add another menu item, which is only visible when myfixed is visible?
I may not have explained things very well. I mean similar to yoast.com, where the logo (or text) is displayed only when the sticky nav bar is displayed.
Thanks
Forum: Fixing WordPress
In reply to: Not able to customize child themeThanks for all your help Tara, you’ve been great!!
Sending positive karma your way ??
Forum: Fixing WordPress
In reply to: Not able to customize child themeI contact my hosting provider tonight, and they sorted the problem within 1 hour. I really rate them, they are fantastic!!
For anybody reading with the same/similar proble, they followed the information in this thread to fix it.
Forum: Themes and Templates
In reply to: [Theme: Twenty Eleven] Featured image sizeForum: Plugins
In reply to: [Yoast SEO] Can't change SEO information on frontpageI’m sure Yoast/Wodpress wont mind me posting this comment becuase competition is what drives better products!
I deleted Yoast and installed All In One SEO, and I kid you not, my homepage now lists as 3rd on Google. When I used Yoast, not only did the homepage NOT show on Google’s front page, but the Archive/Category pages (The stuff you dont really want to be listed before the homepage) was about 7th!
I do not work for All In One, nor do I hav an affiliate program with them.