xdesi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Spacing<br />
will add a line-break in the Code View of your Post Editor. However in the normal WYSWIG view if you just press enter it will automatically add a line-break for you.This should increase the gap between those two posts, however it may not be consistent with the space between other posts.
Forum: Fixing WordPress
In reply to: How to Call a Custom Field in Head?Oh so it is the “and” that i wanted, to pull posts with EITHER of the tags, it doesn’t have to contain both.
However the problem still persists. Even if i take the cat parameter out. Here is what i am trying:
query_posts(array( 'tag_slug__and'=>array('tag 1','tag 2'), ) );?>
This does not work. But the following does work:
query_posts(array( 'tag_slug__and'=>array('tag 1'), ) );?>
Forum: Fixing WordPress
In reply to: pictures in postsI’ve never actually tried but you have tried:
<img src=”location” alt=”alt txt” />
In “Code View” ??
If you haven’t then try doing that. There is also an “IMG” button on the “Code View” window screen which does exactly the same step by step for you.
To switch to code view click the self titled label above the write post textarea.
Forum: Themes and Templates
In reply to: Site Validates but not working in Firefox – SafariLooks like it can’t see your CSS in FF.. This is what my guess is,
Open header.php and change:
@import url( https://www.zumapost.com/wp-content/themes/tranquility earth/style.css );
to:
@import url( https://www.zumapost.com/wp-content/themes/tranquility%20earth/style.css );
Forum: Fixing WordPress
In reply to: SpacingDo you mean you want a gap between Dave’s farm and the post above it, is this the error you was on about?
I’m not sure why it’s doing this, i don;t know why you have this at the end of your newest post:
<p style=”text-align: center;”> </p>
<p style=”text-align: center;”> </p>
<p style=”text-align: center;”> </p>
<p style=”text-align: center;”> </p>
<p style=”text-align: center;”> </p>
Maybe this is contributing to the problem.Maybe a quick fix would just to add a line break at the end of your newest post. The code for this is
Forum: Themes and Templates
In reply to: Widgetizing a ThemeNo worries glad i could help ??
Forum: Fixing WordPress
In reply to: SpacingHave you got a URL to show us?
Are you using the default theme or another theme?The post is usually place inside a class called entry, which if you look up in your style sheet you could probably add a margin-bottom to.
Just guessing.
Forum: Themes and Templates
In reply to: Widgetizing a ThemeAre you using the default kurbrick theme. Back up your functions.php and try having just this in the file. That’s all I have in mine currently, as i think most of the other stuff is related to the Default theme (i think) So back it up and try having only this in there:
<?php if ( function_exists('register_sidebar') ) register_sidebar(); ?>
Forum: Fixing WordPress
In reply to: Paged CommentsOh i understand, well do you have a URL to your problem mike??
I can’t quite remember but if im correct I think all you had to do for this plugin was edit the Config file, upload, activate and it works.Does anyone know if the Ajax version to this was released??
Forum: Plugins
In reply to: Multiple posts on another page NOT on blog homepageYes, on index.php you want to query your posts on both the Latest News and Home page (index.php).
Here is a step by step guide on how to retrieve only the exact posts you want.
Forum: Themes and Templates
In reply to: Theme working in Firefox, but not in IEHey you could still carry on using the Ajax Newsletter probably, you would just need to go into the CSS of that and sort out the prob.
Forum: Themes and Templates
In reply to: Landing page with just one postHey, yes its possible here is how to display a single post of your choice by entering in the Post ID
HereIf you don’t know much about HTML and CSS you could probably just search for a theme that already has 2 sidebars, header and nav as in your pic.
I could help you out with everything if you want, if you could offer something in return, but there might be a theme out there that already does all this for you.
Forum: Themes and Templates
In reply to: Widgetizing a ThemeTry putting the register sidebar code at the top of the functions.php rather than at the end of the file.
Forum: Themes and Templates
In reply to: Sidebar on Index page dropping to bottomIt looks like if the problem is only down to your main frontpage, then it is a problem with the file named index.php in your template folder.
Hey i’ve taken a quick look and it seems in a few posts, youve opened <div align=”center”> and not closed it off, if i’m right it looks as though you’ve done it in the last 3 posts on the main page, kenna, chase and tas this might be a cause.
Forum: Fixing WordPress
In reply to: Asides in Sidebar BrokeNot sure never used it myself, maybe try changing it from category name to category id and specifying an id instead of the name.