kim296
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Help with Google Custom Search EngineI noticed that too. If you want to send the code (copy and paste) to my email. I will be glad to look at it and send it back to you. [ redacted, support is offered via the forums and not email ]
Forum: Themes and Templates
In reply to: Help with Google Custom Search EngineWere you able to make it work like you want?
Forum: Themes and Templates
In reply to: Custom Theme- Content GridIf I can learn how to code this kind of stuff myself, then I can adjust it to fit other pages that I have and not just this one. Also, I may be able to create other new ideas too.
I’ve tried hacking the code to the tanzaku theme (there hasn’t been support to this theme for 2 years), but I can’t make it work right in my theme. There are many sites that have content grids similar to what I’m looking for, so I know there must be a place to start for learning purposes.
I don’t just want to copy code and not be able to figure out why it won’t work. I’d rather try to learn why you do things a certain way. If you know of any good books or sites that I can visit, I would really appreciate it.
I’ve searched this subject for weeks now and can’t figure out where to start. I’m trying to self teach myself (it takes a long time) π
Forum: Themes and Templates
In reply to: Help with Google Custom Search EngineI would try putting everything below <style type=”text/css”> on the styling sheet in your theme template. And, I would put the scripting part of this code in the search results page of your theme template- in the location that you would like it to show up on your page.
That’s what I would try. Maybe this will help you.
Forum: Themes and Templates
In reply to: CategoriesWhich theme are you using? Maybe there is a plug-in that will help you accomplish what you are looking for. Have you tried searching for some custom plug-in’s?
Forum: Themes and Templates
In reply to: Custom Theme- Content GridI’ve looked at the coding for the tanzaku theme and it looks like it is more than HTML and CSS. Does anyone have an idea of where to start? Or a book I can buy.
Forum: Themes and Templates
In reply to: CategoriesYou can make category style pages.
(Example: category-saas.php or category-paas.php)
You add the pages to your theme’s core. Then you can style these pages just like you would your index.php or other pages in your theme.You can link to your new page with something like
http://www.cloudstweet.org/category/saas
Maybe this will help. If not, I’m sure someone else may have a better solution.
Forum: Themes and Templates
In reply to: Custom Theme- Content GridThank you for your response.
Forum: Themes and Templates
In reply to: Custom Theme- Content GridSorry, I meant I would like my content to appear to be in a table and not scrolling straight down like it is now.
Forum: Themes and Templates
In reply to: Custom Theme- Content GridI would like my content post to display similar to the tanzaku
theme. My template has a header and left side bar. I would like to learn how to make the custom content grid (to display post), so that it fits to the right of my sidebar- leaving the rest of the template untouched.My site if you would like to kinda see what I mean:
http://redilinks.com/category/business_directory/I would like it to look like the content is in a table and scrolling straight down like it is now. I just don’t know what language to learn to make this happen.
Forum: Themes and Templates
In reply to: Taking posts off a theme home pageYou can edit your homepage styling sheet and remove the section that calls for your post,then add whatever it is that you want to show up.
Forum: Fixing WordPress
In reply to: Custom Fields HelpThe following code fixed my problem:
<?php query_posts(‘category_name=events&orderby=meta_value&order=asc’); ?>
<?php while (have_posts()) : the_post(); ?><?php endwhile;
wp_reset_query();?>