gingee734
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Error on Theme UploadI put the code at the end of wp-config.php, exactly as written.
Forum: Themes and Templates
In reply to: Error on Theme Uploadthe 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
In reply to: Problem with sidebar opt in formMake 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
In reply to: Current category is hightlighted only when in archive. Why?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
In reply to: New to WP – LOVE it – but have one question about sidebarIt’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
In reply to: Error on Theme UploadWhen 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
In reply to: HOW TO EXTEND THEME SIDEBARIt 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
In reply to: Error on Theme UploadI’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
In reply to: Blog.txt theme – Change widget title styleYou 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