ethilien
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: advanced tags…You mean html tags? You can find lists for the various doctypes on http://www.w3c.org.
The list for XHTML 1.1 is here:
http://www.w3.org/TR/xhtml11/doctype.html#s_doctypeAlso, <p class=”foo”> isn’t a new tag, it is just a p tag with a CSS class assigned to it.
Forum: Fixing WordPress
In reply to: Published postingsPortrait form? Eh? Whats that? Whatever it is, its entirely dependent upon your template.
Forum: Fixing WordPress
In reply to: New page giving 404 errorThat id is the page id, not the post id, so doing ?p=504 shouldn’t work.
Instead, try accessing it using mydomain.com/?pagename=slug
Forum: Fixing WordPress
In reply to: css – dynamic class – syntexThe problem here is with variable scope. When you call get_header() you are entering a function, which has local scope, so you cannot access the variable $headerBG which you set ealier. AFAIK there really is no easy way to do what you are attempting.
I suppose you could try making $headerBG global…
global $headerBG;
$headerBG = "4wd";
then in the header file:
<div id="header" class="<?php global $headerBG; echo $headerBG; ?>">That should probably work.
Forum: Fixing WordPress
In reply to: New page giving 404 errorYou say you’re getting a 404 error? What is the URL it is trying to access and not finding anything? Are you suing mod_rewrite at all?
Forum: Themes and Templates
In reply to: Display problem with IEI don’t know why it looks wider, but the headers now extend all the way over, so it really looks fine.
I did notice however that if I change the color scheme, the sidebar jumps around. Maybe take a look at the css for the other colors and see what they use?
Forum: Fixing WordPress
In reply to: Changing images for posting pageOh, I think the problem you are having is that you didn’t edit all the different template files. Try single.php and archive.php too.
Forum: Fixing WordPress
In reply to: Changing images for posting pageWhich images are you refering to? The header images?
Forum: Fixing WordPress
In reply to: Turning off all autoformatOk, I wrote a plugin that does what I wanted. Sorry for asking a duplicate question π
Forum: Fixing WordPress
In reply to: Making blogs widerDepends on the theme you’re using. If its the default wordpress theme, you could probably make it wider by changing the width value in this part of the css:
#page {
background-color: white;
margin: 20px auto;
padding: 0;
width: 760px;
border: 1px solid #959596;
}Forum: Themes and Templates
In reply to: Display problem with IEI can’t figure out off hand where those spaces are coming from since I can’t fool around with the css, but I would try putting a border around various elements in the menu to see where their edges are. (you might have already done this though…)
Forum: Fixing WordPress
In reply to: Turning off all autoformatWhat about texturize? That doesn’t change the markup does it?