lindsayanng
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Unable to Save/Publish new postsYou follow the instructions on the error and go to your server error logs and see what the error actually is
Forum: Fixing WordPress
In reply to: Posts will not display on index page.you will need to post the code to your index.php
also, do you have your wordpress settings set to display as a normal blog, or as a static page as the front page?
Forum: Fixing WordPress
In reply to: Recent post outside wordpressYou can use RSS feeds and just embed the RSS feed to your non wordpress page.. HOWEVER you should know that any page you embed php code needs to change from .html to .php
Forum: Fixing WordPress
In reply to: Unable to Save/Publish new postsmore info
did you change anything when this happened (add plugins, new featured, etc)
what happens? does it just not save? errore? blank page?
Forum: Fixing WordPress
In reply to: Gallery is acting funny – column choice isn’t changing output?
Forum: Fixing WordPress
In reply to: Gallery is acting funny – column choice isn’t changing outputI wish it was as simple as that, but look at the code it’s creating.. if it was just the padding, all of the images would be contained within one single div, but instead its outputting like this
<div>
Image
Image
Image
</div>
<div>
Orphaned image
</div>I can not figure out WHY that last image in in its own container.
Forum: Fixing WordPress
In reply to: Gallery is acting funny – column choice isn’t changing outputReally could use some help here.
Forum: Fixing WordPress
In reply to: add a space between my image and my text?You can create an inline style.. so you put the css inside of the html.
Why are you so adamant about not changing the CSS? it would make things a million times easier.
Forum: Fixing WordPress
In reply to: Need Suggestions for Tables Possibly?I completely understand what you are trying to do..
Is there a reason you are using wordpress for this? I mean, a simple php database website would work for you. As a matter of fact, my company is in the process of developing ones for modeling agency where the user can just add a new “model” and put in their attributes and features. Then they can add new fields and upload images along with that person.. And of coarse its also very easy to search and filter based on certain attributes.
That is essentially what you are considering doing correct? If so, I can look into licensing on that for you.
Forum: Fixing WordPress
In reply to: Page/Post doesn’t update when I editare you using a super cache plugin??
Forum: Fixing WordPress
In reply to: My posts page is displaying my static home page.When you created the regular home page, did you create a specific page template to get the look you wanted??
Did you use the same page template?? if so, thats likely what is happening.
When you go to edit the news page, on the right side you will see “choose page template” in there choose default
That MAY help, but i cant say for sure because I dont know how you designed your pages
Forum: Fixing WordPress
In reply to: How to write posts if the site belongs to you o_0?Ya know what – you’re really not worth helping..
Forum: Fixing WordPress
In reply to: Gallery is acting funny – column choice isn’t changing outputOOPS!! Dont i feel like a DOPE!!!
Forum: Fixing WordPress
In reply to: Need Suggestions for Tables Possibly?you need to give a lot more information on what you are trying to do,
Forum: Fixing WordPress
In reply to: Making posts appear on the right side of the page.You need to create a fixed width website, then give the box that you want to be on the right side a fixed width and the box that you want to be on the left side a fixed width.. Basically if you have a fixed width of 1000px, and you want the left side to be smaller than the right, you create a width for the left side box of 280px and the right side will have a width od 720px (notice that they both equal 1000)
Then you give the right side a float:right in the css
that should do it