Title: gingee734's Replies | WordPress.org

---

# gingee734

  [  ](https://wordpress.org/support/users/gingee734/)

 *   [Profile](https://wordpress.org/support/users/gingee734/)
 *   [Topics Started](https://wordpress.org/support/users/gingee734/topics/)
 *   [Replies Created](https://wordpress.org/support/users/gingee734/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/gingee734/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/gingee734/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/gingee734/engagements/)
 *   [Favorites](https://wordpress.org/support/users/gingee734/favorites/)

 Search replies:

## Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Error on Theme Upload](https://wordpress.org/support/topic/error-on-theme-upload/)
 *  Thread Starter [gingee734](https://wordpress.org/support/users/gingee734/)
 * (@gingee734)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/error-on-theme-upload/#post-2106451)
 * I put the code at the end of wp-config.php, exactly as written.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Error on Theme Upload](https://wordpress.org/support/topic/error-on-theme-upload/)
 *  Thread Starter [gingee734](https://wordpress.org/support/users/gingee734/)
 * (@gingee734)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/error-on-theme-upload/#post-2106446)
 * the code: `php_flag display_errors on` shows up as a syntax error. I tried it
   anyway and everything just shows how that line of code is an error. Nothing shows
   up but that error.
 * I set `define('WP_DEBUG', true);` from false to true. And I get a few errors 
   in functions.php without loading the theme..
 *     ```
       Notice: add_option was called with an argument that is deprecated since version 2.3 with no alternative available. in /nfs/c06/h04/mnt/94578/domains/joannycastro.com/html/wp-includes/functions.php on line 3389
   
       Notice: has_cap was called with an argument that is deprecated since version 2.0! Usage of user levels by plugins and themes is deprecated. Use roles and capabilities instead. in /nfs/c06/h04/mnt/94578/domains/joannycastro.com/html/wp-includes/functions.php on line 3387
   
       Notice: has_cap was called with an argument that is deprecated since version 2.0! Usage of user levels by plugins and themes is deprecated. Use roles and capabilities instead. in /nfs/c06/h04/mnt/94578/domains/joannycastro.com/html/wp-includes/functions.php on line 3387
       ```
   
 * Now, the theme is in the theme directory but it’s not showing up. I guess I should
   try to fix the errors above first?
 * My CSS came up with no errors from the validator.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Problem with sidebar opt in form](https://wordpress.org/support/topic/problem-with-sidebar-opt-in-form/)
 *  [gingee734](https://wordpress.org/support/users/gingee734/)
 * (@gingee734)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/problem-with-sidebar-opt-in-form/#post-2106935)
 * Make sure the coding for your single.php is almost identical to your page.php
   concerning the sidebar. There’s two divs with the id “af-body-167943793” and 
   the css appears to be different.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Current category is hightlighted only when in archive. Why?](https://wordpress.org/support/topic/current-category-is-hightlighted-only-when-in-archive-why/)
 *  [gingee734](https://wordpress.org/support/users/gingee734/)
 * (@gingee734)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/current-category-is-hightlighted-only-when-in-archive-why/#post-2106897)
 * Can you provide a link to the site? I think the post (or single.php?) would be
   a different selector in your css. That’s probably the issue.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [New to WP – LOVE it – but have one question about sidebar](https://wordpress.org/support/topic/new-to-wp-love-it-but-have-one-question-about-sidebar/)
 *  [gingee734](https://wordpress.org/support/users/gingee734/)
 * (@gingee734)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/new-to-wp-love-it-but-have-one-question-about-sidebar/#post-2106896)
 * It’s probably a feature you’re intended to use with the theme. On your dashboard
   is there anything that hints as a rotator? Look through your options under Appearance,
   Settings and Plugins to see if it’s there.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Error on Theme Upload](https://wordpress.org/support/topic/error-on-theme-upload/)
 *  Thread Starter [gingee734](https://wordpress.org/support/users/gingee734/)
 * (@gingee734)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/error-on-theme-upload/#post-2106377)
 * When I delete and upload it with Filezilla, the theme still won’t show up. Any
   idea on what could be wrong with the style sheet?
 * It pretty much goes along these lines…
 *     ```
       /*
       Theme Name: ****
       Theme URI: ****
       Description: ****
       Author: ****
       Author URI: ****
       Version: 1.0
       */
   
       body {
       	background-color: #d4cdda;
       	margin:0;
       }
   
       #header {
       	height:125px;
       	background: #2f2f2f url(../images/top-nav.jpg) repeat-y left scroll;
       	position:absolute;
               top:0;
       	left:0;
               width:100%;
               z-index:100;
       }
   
       #logo {
       	float:left;
       	padding-left:60px;
       	padding-top:20px;
       	padding-bottom:20px;
       	padding-right:25px;
       }
   
       #navmenu {
       	margin-top:50px;}
   
       #navmenu ul {
       	list-style-type: none;
       	list-style-image: none;
       }
       ```
   
 * Excluded info marked with “****” – there’s more to it of course.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [HOW TO EXTEND THEME SIDEBAR](https://wordpress.org/support/topic/how-to-extend-theme-sidebar/)
 *  [gingee734](https://wordpress.org/support/users/gingee734/)
 * (@gingee734)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/how-to-extend-theme-sidebar/#post-2105157)
 * It should be under div id=”masthead” > table > tbody > tr > td, then the width
   is there, I think. This should be in your index file.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Error on Theme Upload](https://wordpress.org/support/topic/error-on-theme-upload/)
 *  Thread Starter [gingee734](https://wordpress.org/support/users/gingee734/)
 * (@gingee734)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/error-on-theme-upload/#post-2106135)
 * I’m sorry, I don’t know what you’re referring to exactly. I don’t know what you
   mean by big spaces. Do you mean time between uploading a theme, where you have
   to wait? Here’s the lines of code from the functions.php file:
 * **4284**
    `$fp = fopen( $file, 'r' );`
 * **4287**
    `$file_data = fread( $fp, 8192 );`
 * **4290**
    `fclose( $fp );`
 * The comment markup talks about opening the file but yea… still no clue to what’s
   wrong. My code is fairy basic since I went by codex too.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Blog.txt theme – Change widget title style](https://wordpress.org/support/topic/blogtxt-theme-change-widget-title-style/)
 *  [gingee734](https://wordpress.org/support/users/gingee734/)
 * (@gingee734)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/blogtxt-theme-change-widget-title-style/#post-2106133)
 * You can use CSS to change text size and their font. For your site it could be..
 *     ```
       div.sidebar ul li h3 {font-size:1px;
       font-family:"Times New Roman", Times, serif;}
       ```
   
 * for example

Viewing 9 replies - 1 through 9 (of 9 total)