omann0
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Anyone Using Bionic Jive? Need Some Help…i dont use bionic jive but i know css, do a ctrl-f when working inside the css file for background: #CCC or something of the like that would be a grey color. then add url(images/whatever.jpg) to that element declaration.
Forum: Themes and Templates
In reply to: Image borders (i.e. borders around the page using images)height: 100%; wont work. That is a common css problem that the height of div’s cannot go to the end of the page, only the content that is inside the layer.
Yry removing the height element entirely, the the height should go to the end of the text inside. If that doesnt work, you will have to include all div’s in a container div with that bg.
Forum: Fixing WordPress
In reply to: single category view – date and order questions1) use the codex for sorting the entries, there should be some sort of argument you pass in the loop
2) use <?php the_time(‘ — with your php timecodes here — ‘) ?>
also look in the codex for a way to display the date you want
Forum: Fixing WordPress
In reply to: Comment links and permalinks not workingits possible, do you have your .htaccess set up correctly? If it is in the right place you should try and chmod it to 777 and see if you can edit it through wordpress
Forum: Themes and Templates
In reply to: Creating a sidebar without sidebar.php advicesidebar.php is merely an include, you can make it whatever you want.
Forum: Fixing WordPress
In reply to: firefox & ie discrepancynope, it is a png, but it has no alpha channel
Forum: Fixing WordPress
In reply to: firefox & ie discrepancythanks for your comment, thats what im trying to fix, the top part of the curve blends with the sidebar in firefox, but it appears a different shade in ie… so wierd….
Forum: Fixing WordPress
In reply to: Changing .php column on every postuse if statements and conditionals
look in the codex
Forum: Requests and Feedback
In reply to: XML storage?WordPress is generated through php and sql. The closest thing to xml storage would be the rss feeds. As far as I know there are no plans to change the underlying codebase.
Forum: Your WordPress
In reply to: Blog site setupjust use dreamweaver as an ftp and to edit your themes. You still need to upload it and install it via the web
Forum: Themes and Templates
In reply to: Same sidebar on all the pagesmost likely you will find if statements in the sidebar page
if(is_category()) {
…
}something like that which uses different code depending on which page is loaded. you can move the comment structure back to your main index and delete the if statements if you want them all to be the same.
http://codex.ww.wp.xz.cn/Forum: Everything else WordPress
In reply to: What do you look for in a blog?design is what attracts me. the content may be what i stay for but before i usually give anyone’s blog a chance i have to not be sickened by their design. Asthetics are very important to me
Forum: Everything else WordPress
In reply to: what is this aboutagreed, i dont see the pixel using my browser, sounds like spyware on your machine
Forum: Fixing WordPress
In reply to: Familiar with Apache2 userdir on WinDoze?Make sure your wordpress options are correctly configured. If you have the main index called from another folder other than wordpress, make sure you have your .htaccess file wherever your main index is.
Forum: Plugins
In reply to: Customizing wp_get_archives() outputyou can browse the codex for other ways to implement conditionals.