Ok so I pointed out in the other post on the new update of word press that I have been having some problems. The biggest problem is with the Content of the Html tag
- Code: Select all
<ol>
Now this is related to the light.css file taking over for that section of the #content styling. Why its doing this I don't know. Firebug clearly shows that this is where it is picking up the Css for it but I should be able to override it in the child's style.css. I still feel like im not getting some of the themes functionality with the child theme because when I check on the change theme to white It dose not work in the child theme but dose in the regular. Lets add this to the problem list and I now need to go over to Word press forum and ask about why the wp-admin live theme preview is not working. Wayne I am going to post my all my child theme info I would really appreciate it if you could take a look at it my childs Css file. Iam acutally going to attach my whole child theme for you to play with I think it would really be a good idea to have a child theme template that has full functionality for those who want to do mods. At least then you know you started from the right place eh.
styly.css
- Code: Select all
/*
Theme Name: sliding-door-child
Description: Child theme for sakecat
Author: Blake
Author URI: http://www.sakecat.com/
Template: sliding-door
Version: 0.1.0
*/
@import url("../sliding-door/style.css");
@import url("../sliding-door/dark.css");
@import url("../sliding-door/light.css");
@import url("../sliding-door/imagemenu/imageMenu.css");
#wrapper {
background-color: transparent !important;
color: transparent;
}
Except for the #wrapper change it is almost exactly just how you had it in your
http://mac-host.com/support/viewtopic.php?f=9&t=1869&sid=9612ba7d41d6d8b6c7641acf0a9cad9e pin about using a child theme you put up is there a chance that the instructions were missing a import. I found another css file editor-style.css and added that to the @import url list and that is a no dice it fixes the problem with the
- Code: Select all
<ol>
div but It also blows all the text fomatting from the rest of the style sheet. this also dose not return functionality to the color switching theme option. On top of that it displays the text color as Gray. The other two files i have in my child are the.
footer.php
- Code: Select all
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the id=main div and all content
* after. Calls sidebar-footer.php for bottom widgets.
*
* @package WordPress
* @subpackage Sliding_Door
* @since Sliding Door 1.0
*/
?>
</div><!-- #main -->
<div id="footer" role="contentinfo">
<div id="colophon">
<div id="site-generator">
<!-- If you'd like to support WordPress, having the "powered by" link somewhere on your blog is the best way; it's our only promotion or advertising. -->
<p>All content and design not powered by <a href="http://wordpress.org/">WP</a> and <a href="http://mac-host.com/slidingdoor/">Sliding Door</a> or acredited <a href="http://www.sakecat.com/media/creative-commons/">here</a>.
Is © Sake Cat LLC 2012 .</p>
</div><!-- #site-generator -->
</div><!-- #colophon -->
</div><!-- #footer -->
</div><!-- #wrapper -->
<?php
/* Always have wp_footer() just before the closing </body>
* tag of your theme, or you will break many plugins, which
* generally use this hook to reference JavaScript files.
*/
wp_footer();
?>
</body>
</html>
and I have this for my amazon A-store.
- Code: Select all
[url]<?php get_header(); ?>
<?php
/*
Template Name: a Store Page
*/;
?>
<?php get_header(); ?>
<!-- Paste your own code below over the example code I've supplied -->
<iframe src="http://astore.amazon.com/edited-out" width="90%" height="4000" frameborder="0" scrolling="no"></iframe>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_content(__('[Read more]'));?>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p><?php endif; ?>
<!-- The main column ends -->
<?php get_footer(); ?>[/url]
I don't think any of this is causing my functionality and character problems. I have tried disabling all of my plugins getting widgets that are plugins taken out etc etc NO DICE. Please advise me on where you think the problem is thank you. I would really love to get a good child theme start point for modifiying my site as most of my mods are not the in depth.