kennethwatt
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How themes workNo, but when you look at the full outcome, they all merge together to form one big page. Have a look at the source any WordPress site, e.g. http://www.technofinger.com.
Forum: Themes and Templates
In reply to: Theme Options Page, and IF statements…Sorry error on my behalf – something funny in the functions.php file.
Forum: Themes and Templates
In reply to: How themes workNormally, one would open a page wrap in the header, and close it in the footer, as these all pages use the same header.php and footer.php file.
Forum: Themes and Templates
In reply to: Problemas con IEBasically what I (tried) to say was that IE7 doesn’t like percentages, it prefers pixels, which could have been the problem. I asked Incognito if he had tried in IE8.
Forum: Themes and Templates
In reply to: Problemas con IEHola 🙂
¿Funciona perfecto en IE8?
¿Maybe the font sizes are in percentages (Tal vez el tamaño de las fuentes se encuentran en porcentajes)?
Adiós 😉Forum: Themes and Templates
In reply to: Loop Cancelled Out By Other LoopSorry, tweaked it a bit to this:
<?php //The Query query_posts('showposts=5'); //The Loop if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <li><a href="<?php the_permalink() ?>" rel="bookmark" title=""><?php the_title(); ?></a></li> <?php endwhile; else: ?> <li>Something went bang... please try again later.</li> <?php endif; //Reset Query wp_reset_query(); ?>Thanks 🙂
Forum: Themes and Templates
In reply to: Loop Cancelled Out By Other LoopHi there
Not working I’m afraid.
It’s like the actual request the page is making for which ever post it’s on, cancels out the header loop :S
Thanks anyway 🙂Forum: Themes and Templates
In reply to: Text-decoration not having any affect?Sorted. Needed to add !important tag.
Forum: Themes and Templates
In reply to: How to add a logo to my Blog?change the css styling of it…
Forum: Themes and Templates
In reply to: Widget in Own <li>?Resolved before reply.
For reference to people looking for answers to same question:
Turns out that WP defaults to putting some code before the widget, if nothing is specified in the theme’s functions.php file.
Just changed it to:register_sidebar(array('name'=>'Sidebar', 'before_widget' => '', 'after_widget' => '', ));Forum: Themes and Templates
In reply to: Ads Move while Scrolling!Link pls?
Forum: Themes and Templates
In reply to: Customizing Kubrick’s sidebar in 2.8.3Sorry! Change what’s in sidebar.php. Take out the
»sForum: Themes and Templates
In reply to: Customizing Kubrick’s sidebar in 2.8.3Change the css for the sidebar.
Forum: Themes and Templates
In reply to: Am I expecting too much from WPThe owner of WordPress and bbPress. bbPress will automatically integrate with your WordPress blog.
Forum or integration
Forum: Themes and Templates
In reply to: Am I expecting too much from WPAutomattic, the owners of WP, have a forum system called bbPress. It integrates well with WordPress.
In terms of the rest of it, everything can be done by either an existing plugin or writing your own code.
If you wish to suggest any of these features, put them here
http://wordpress.org/extend/ideas/