zeaks
Forum Replies Created
-
I don’t, wish I could keep everyone else from using it though lol. Could it be that ie9 doesn’t like the facebook widget being in an iframe or somthing? I can’t figure out why it’s not showing at all in ie9
I was referring to ie7, and it pushes it to the top in my browser with compatibility mode with ie8 browser on which renders it as ie7 as far as I know.
But I just installed IE9, the facebook widget won’t even display, not blaming the plugin I think ie is just a junk browser. It seems to display fine with compatibility mode on in ie9 .
I took screenshots of it rendered in all 3 http://img15.imageshack.us/g/ie7h.jpg/ it acts the same way in twenty ten theme@henry Lange this is what I’m using in mine to style it. It’s basically what’s in stc-followers.php with the width and added padding to fit my theme.
.stc-follower-username{ text-align:center; font-size:15px; margin:0; } .stc-follower-username a { color:blue; } .stc-follower-box { border:1px #94a3c4 solid; background:#fff; width:200px; } .stc-follower-head { background:#eceff5; border-bottom:1px #d8dfea solid; margin-bottom:6px; } .stc-follower { float:left; width:50px; padding-right: 10px; padding-left:5px; height:70px; } .stc-follower-name { text-align:center; width:50px; font-size:9px; overflow:hidden; }Forum: Themes and Templates
In reply to: How to replace the header in TwentyTen TemplateUnless you have made changes to your current functions.php file, then you don’t need it in your child theme. The child theme will still use all the functions of TwentTen. Same goes for every other file, if no changes have been made, you don’t need them in the child theme folder.
The only file you do need in the folder is a style.css with the line
@import url(‘../twentyten/style.css’);then you can add your own css to it which will build your theme along with the style.css TwentyTen theme uses already.To change the width and height, change the two numbers where it says return 198; <– height
and return 940; <– width
to whatever you want (I think 198×940 is the default size for the header)Forum: Themes and Templates
In reply to: How to replace the header in TwentyTen TemplateCreate a new file for your child theme called functions.php and add to it
<?php // You can change the default header size here function ttoptions_header_height($size){ return 198; } function ttoptions_header_width($size){ return 940; } add_filter('twentyten_header_image_height','ttoptions_header_height'); add_filter('twentyten_header_image_width','ttoptions_header_width');Change the width and height to whatever you want.
Forum: Plugins
In reply to: Simple Twitter Connect – Can't Log OutThanks, this worked for me. If using the comments widget, the unset line is at line 50 in stc-comments.php
Forum: Themes and Templates
In reply to: How to replace the header in TwentyTen Template@armon99 as Rev. Voodoo said, you can change those to whatever you want, it’s your theme.
Start off with basic css changes, then move on to adding your own functions and templates once you understand how it works.
http://voodoopress.com has lots of great articles, http://aaron.jorb.in/blog/2010/04/introducing-thirty-ten/ is another, I’ve made a few articles on my own site http://zeaks.org/ which uses a child theme I made by following articles like these.Forum: Themes and Templates
In reply to: How to replace the header in TwentyTen TemplateHere’s an easy tutorial I made up a while back http://twentyten.info/child-theme-basics/ it should be enough to get you started. There should be many tutorials on the net that will give you all the information you need.
I’ll also add that Weaver theme http://wpweaver.info has an option to choose the size of your header…along with a hundred other options.
Forum: Themes and Templates
In reply to: How to replace the header in TwentyTen TemplateAs Esmi said, using a child theme is the way to go. The header size can be changed by adding this function to your child theme functions.php
// You can change the default header size here function ttoptions_header_height($size){ return 198; } function ttoptions_header_width($size){ return 940; } add_filter('twentyten_header_image_height','ttoptions_header_height'); add_filter('twentyten_header_image_width','ttoptions_header_width');(you can change the function name “ttoptions”, this is straight out of my own theme.)Once you do that, you can simply upload it through the admin as usual.
Forum: Themes and Templates
In reply to: 2010 child theme- help with style sheetAn easy way to figure out class names if using firefox is to use firebug addon. Basically right click and it shows you the class name for any area of your site. Saves from searching through TwentyTens huge css.
Forum: Your WordPress
In reply to: I've built a Child theme with shortcodes includedThat’s something I want to do as well, I’m a bit unsure how to do it though with the way functions are added.
Forum: Your WordPress
In reply to: Twenty Ten options themeEach layout uses a different loop, with a bit of css to set the size of the columns. In the theme, it’s just a matter of clicking a button to switch layouts. The loops could be used in your own child theme easy.
If you wanted to create your own, I referred to two sites when creating them, http://digitalraindrops.net/2010/09/two-post-columns/
and this one http://www.transformationpowertools.com/wordpress/playing-with-columns-stacking-posts-grid-styleForum: Your WordPress
In reply to: I've built a Child theme with shortcodes includedDo you have a link to the theme? Sounds interesting
Forum: Your WordPress
In reply to: Twenty Ten options themeJust wanted to add that a new version of this has been released today version 1.5, and there’s been alot of new options added.
All slider functions such as transition effects, pause timer, number of images and transition timer can now be controlled from the theme options panel now, the category the slider pulls images from can be selected now as well.Also added are options for searchbar on/off, header on/off and an area to add Google Analytics code or other code to the footer.
There’s been several other changes and fixes too. Demo has been updated
I’d appreciate any feedback if anyone uses this theme, thanks
Forum: Themes and Templates
In reply to: changing template text color for Theme twenty tenAs Esmi said, learning to create a child theme is the best way to make changes to your site. If you don’t know CSS or are unwilling to learn, using a theme such as Weaver http://wordpress.org/extend/themes/weaver would be the easiest, you can do alot with this theme.