zeaks
Forum Replies Created
-
Forum: Themes and Templates
In reply to: CSS trouble help me :(Try this in your css, it should only change the text in the blue image
#content .post h3 p{color:#fff;}
Forum: Themes and Templates
In reply to: CSS trouble help me :(hmm, try adding this to your css.
#content .post h20 a {color: #fff}nevermind adding that, I guess you’re editing your theme, it’s hard to tell what to change when you’re working on it
Forum: Themes and Templates
In reply to: CSS trouble help me :(In your css change the color in this
#content .post p { color: #89898C; line-height: 1.6em; padding: 0 10px; }I can’t help with the stats plugin, sorry
Forum: Themes and Templates
In reply to: CSS trouble help me :(Could you link your site please
Forum: Themes and Templates
In reply to: Border around Gallery PicturesIn your gallery css change
#gallery-1 img { border: 2px solid #CFCFCF;to
#gallery-1 img { border: none;Forum: Themes and Templates
In reply to: Can't get font size rightIt’s still showing as 13px to me, changing it in firebug increases the font size.
Forum: Themes and Templates
In reply to: Index changer Twenty Ten child themeThanks Adeptris, the “green.php” was a mistake, it should of had the grid.php in there I think, either way, it wouldn’t of worked. Here is the tutorial I referred to
http://aaron.jorb.in/blog/2010/04/introducing-thirty-ten/Here is a grid style page layout I am using if anyone wants to use it. http://wordpress.pastebin.com/SvyVd28X I have it active on this site http://test.zeaks.org/
I referred to two sites when creating it, yours http://digitalraindrops.net/2010/09/two-post-columns/
and this one http://www.transformationpowertools.com/wordpress/playing-with-columns-stacking-posts-grid-styleHere is my entire options page which works great now. The style and layout are in separate links but they are working fine.
http://wordpress.pastebin.com/yJmctXYz
Thanks for the help
Forum: Themes and Templates
In reply to: Index changer Twenty Ten child theme@adeptris after reading what you said I understand how it would work, I just don’t know how to add it to the admin. I’ve used Arron Jorbins thirty ten tutorial to add the admin which I used to change the stylesheets.
I’ve tried to modify the code to add a section to switch .php files and using the code you supplied, but never got it to work.
http://wordpress.pastebin.com/M4psnQRm is my options file.
I added and changed it to this.
function simpleten_add_layout_php(){ $option = get_option('simpleten'); if (strlen($option) <= 1 ) $option = 'green'; $src = get_stylesheet_directory_uri() . "/$option.php"; if (! is_admin() ) wp_enqueue_style( 'simpleten_layout', $src ); }and added the option to switch to it, but it didn’t work.I’m still very new with php so that’s probably not even close to what I need to do.
Forum: Themes and Templates
In reply to: Remove Twenty Ten admin functionsThis seemed to remove both the header and background controls, I just added the background control back. Haven’t run into any issues with it yet.
function twentyten_setup() { /* leave the parts of the code in that you want to get executed; for instance, remove the code that does the custom header stuff */ } add_custom_background(); add_theme_support( 'post-thumbnails' );@adeptris thanks for the tutorial on your site, I’ve learned alot from it.
Forum: Themes and Templates
In reply to: Twenty Ten Remove Header ImageI was looking for how to do this as well, using the code from above, I added this to my child theme and it worked. Haven’t noticed any issues so far.
function twentyten_setup() { /* leave the parts of the code in that you want to get executed; for instance, remove the code that does the custom header stuff */ } add_custom_background(); add_theme_support( 'post-thumbnails' );Forum: Themes and Templates
In reply to: Remove Twenty Ten admin functionsYeah I know only the admin can see it, I want it removed for a child theme as the child theme doesn’t use a header so the link is pointless.
Forum: Themes and Templates
In reply to: Grid template issue with nav linksGuess the issue isn’t just displaying the links properly, they don’t seem to work. I’m unable to get it to display a “previous” link at all, best I can do is get it to show an “older posts” link, 2 of them, one should be at the bottom but it won’t move there, and it will only link to page 2 even when setting the # of posts to 2 so there should be 3 or 4 pages.
Same here, I have a 3 MB file i had to upload manually, the link works, but counter doesn’t
Forum: Hacks
In reply to: Fetch RSS problemYeah you’re right, I just tried another newsfeed and it worked, thanks
Forum: Themes and Templates
In reply to: Grid page template questionThanks, this works great