Pride
Forum Replies Created
-
Thank you so much! I followed your advice and I got it working!
Apparently I only needed to change 1 small thing
Original Code
#left { padding: 10px; width: 240px; padding-right: 1em; float:left; font-weight: normal; font-size: small; }
Adjusted Code
#left { padding: 10px 0; width: 240px; padding-right: 1em; float:left; font-weight: normal; font-size: small; }
I couldn’t have done this without your help! Thanks a million!
J
Ok, I will give this a shot and report back… thanks again for your help!
I believe I corrected it. Down to 7 errors.
{ register_sidebar(array( 'name'=>'columnLeft', 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3 class="menu-header">', 'after_title' => '</h3>', )); }
None of these seem to be affecting my original problem though.
I am not sure that I can make sense of what the author of this theme was trying to do. Does anyone have any thoughts?
Here is the original code that is creating the error mentioned in the earlier post:
<?php if ( function_exists('register_sidebar') ) { register_sidebar(array( 'name'=>'columnLeft', 'before_widget' => '<h5 id="%1$s" class="widget %2$s">', // Removes <li> 'after_widget' => '</h5><br />', // Removes </li> 'before_title' => '<h3 class="menu-header">', // Replaces <h2> 'after_title' => '</h3>', // Replaces </h2> )); }
Thank you… I will investigate!
There, I believe I have fixed that error. I replaced <h with <h5
Its very possible. Would that have any affect on the layout issue in IE6?
What did you use to run the validation check?