Ankit Singla
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Link colour remaining in active stateDo you see them Underlined or Dark Blue??
1. Underlined — means link active
2. Dark blue — means visited linkYou may be getting them dark, as you have most of them visited from your browser.
Forum: Fixing WordPress
In reply to: Recent Posts wont Appear on HomepageWhat did you change just before it got disappeared??
Forum: Fixing WordPress
In reply to: how to remove black nav bar in twenty eleven themeAhh — I explained it for twentytwelve.
Use above post to get going.
Forum: Fixing WordPress
In reply to: how to remove black nav bar in twenty eleven themeYou should remove the code ::
<nav id="site-navigation" class="main-navigation" role="navigation"> <h3 class="menu-toggle"><?php _e( 'Menu', 'twentytwelve' ); ?></h3> <a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentytwelve' ); ?>"><?php _e( 'Skip to content', 'twentytwelve' ); ?></a> <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu' ) ); ?> </nav><!-- #site-navigation -->That is from line number 42-26 in header.php, starting from <nav> to </nav>.
</nav> is where the navigation code ends.
Forum: Fixing WordPress
In reply to: how to remove black nav bar in twenty eleven themeThese both are the only ways.
–>In the first — it was actually there, but not displayed by the browser.
–>In the later — it was actually removed from the code files.
And, certainly should work.
Forum: Fixing WordPress
In reply to: Code Error – I can't access ANYTHING!You can use your copy, as long as it is clean.
Forum: Fixing WordPress
In reply to: Code Error – I can't access ANYTHING!Sorry, I didn’t see you message, I was writing at that time.
–>Are you sure you edited the header.php when you get that error?
Forum: Fixing WordPress
In reply to: Code Error – I can't access ANYTHING!If you edited header.php — for logo – then certainly you need to replace that file with a clean copy.
==>The best way — if you haven’t done much editing — then you can re-load a fresh copy of 2012 theme.
==>The second best — Upload just the header.php file in 2012.
””’For all you future edits you may want to use a decent text-editor like Notepad++ , it actually can undo a lot of changes that you made in the text files, no matter you saved it or not. You can always undo changes.””””
Forum: Fixing WordPress
In reply to: Error message: this child theme requires its parent theme…You have correctly followed the super simple way.. and reached where you wanted.
Move ahead, customizing your new child theme.Forum: Fixing WordPress
In reply to: Error message: this child theme requires its parent theme…Man, it all correct.
WP shows that lines “”To inform that this is a child theme, and depends upon parent theme to work””
It will show that line for every child theme 🙂
Forum: Fixing WordPress
In reply to: Code Error – I can't access ANYTHING!It seems you don’t use FTP.
Try via cPanel. It’s all same.You can replace the header.php file, with a clean unedited copy.
Forum: Fixing WordPress
In reply to: Error message: this child theme requires its parent theme…This is all right.
Just to confirm, you have twentytwelve in your wp-content directory?Forum: Fixing WordPress
In reply to: Edit somone else's wordpress website from different computerIs she the only admin user??
Forum: Fixing WordPress
In reply to: Error message: this child theme requires its parent theme…What is at the top of your child theme’s css file??
Forum: Fixing WordPress
In reply to: How to show content of a tags when I click the tag?You should be having a tag.php in your theme files. If not, then search codex for info.