xamataca
Forum Replies Created
-
Forum: Plugins
In reply to: Detach & Re-Attach Media Attachment Images from PostsOh as well, it would be nice if we could assign/attach one image to multiple posts
This would be awesome, think of a multilingual site (you have duplicated post in each language and you can attach the same image to both).
Forum: Themes and Templates
In reply to: HOW TO CHANGE FONT IN ANY THEME.Forum: Themes and Templates
In reply to: Removing sidebar from a single custom pageYou’r welcome
And remember: Codex & search are your friends 🙂Forum: Themes and Templates
In reply to: Removing sidebar from a single custom pagedid you read the link about conditional tags?? try with is_page(x), where X is the number ID of the page you are using as front page.
<?php if ( is_home() || is_page(X) ) { } else { get_sidebar(); } ?>Forum: Themes and Templates
In reply to: How to move the sidebar from right to left?You need to float:right the #content div too
Forum: Themes and Templates
In reply to: Header image not working in IE8Because Iexplorer can’t render CMYK images. (mozilla and opera can, btw, didn’t test other browsers)
Change the Jpg to RGB 😉 and it will be visible in every browser.
😉 greets
Forum: Themes and Templates
In reply to: How to move the sidebar from right to left?In your style.css file:
#content { float:left; width:588px; } #sidebar { float:right; width:272px; }Just guess what values you have to change 😉
Forum: Themes and Templates
In reply to: Removing sidebar from a single custom pageUsing conditional tags in your index.php / page.php theme file:
<?php if (is_front_page()) { } else { get_sidebar(); } ?>I’m not a php expert but this should work. (I’m certain that a php expert would code this in a more efficient and elegant manner)
http://codex.ww.wp.xz.cn/Conditional_TagsForum: Themes and Templates
In reply to: Post and stuff in sidebar coming out bold!It’s the very same error, there are a tag somewhere NOT clossed. Validate it:
http://validator.w3.org/check?uri=http://www.healthyrevelations.com/blog/&charset=(detect+automatically)&doctype=Inline&ss=1&group=0&verbose=1&user-agent=W3C_Validator/1.654Forum: Themes and Templates
In reply to: how to make image displaying like thiswp-caption { background:#F7F7F7; border:1px solid #CCC; padding:5px 0; margin-bottom:5px; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }This won’t be visible in Iexplorer
-moz-border-radius: 3px; –> Gecko
-webkit-border-radius: 3px; –> Webkit
border-radius: 3px; –> OperaForum: Fixing WordPress
In reply to: Editing Filesgood question, indeed… 🙂
But I would bet he’s talking about theme “files”..Forum: Fixing WordPress
In reply to: All My Posts Disappeared!Did you edit your theme files lately? Paste your theme index.php code:
http://www.pastebin.comForum: Fixing WordPress
In reply to: Editing FilesEasy way is to edit them offline and then upload them via FTP to your theme folder again.
And you can edit your theme files probably because of permissions:
http://codex.ww.wp.xz.cn/Changing_File_PermissionsForum: Fixing WordPress
In reply to: My stylesheet has gone crazyAVOID wysywyg editors when coding/editing PHP and CSS files; although they seem to be helpful and fast they prevent you learning / understanding how HTML, CSS, PHP or JS works when you code them by hand. 😉
Forum: Fixing WordPress
In reply to: Multiple templates in one blog?Templates are assigned to pages, categories or post. So, you can use conditional tags to get the template needed:
<?php if ( is_category(X) ) { include(TEMPLATEPATH . '/template_1.php'); }Or if it is a page
<?php if ( is_page(X) ) { include(TEMPLATEPATH . '/template_2.php'); }