Peter Boosten
Forum Replies Created
-
Forum: Themes and Templates
In reply to: css txt highlight roll-overgive the
<a>s the padding you require and also make them display:block in your css.Before doing that he has to put the h1 also in a li (it’s actually not good coding the way it’s now), and have the li’s float left.
Peter
Forum: Themes and Templates
In reply to: css txt highlight roll-overthis has now spread the menu items apart..
only by 1px, since your li’s first had a 5px left padding, and now your a’s have a 3px padding on both sides (which gives a total of 6px between the a’s, if you removed the left padding on the li’s).
Peter
Forum: Themes and Templates
In reply to: Everything is centredIn what directory did you upload that style.css?
I can see that you use this theme: Cordobo Green Park 2
and it’s in the newtheme/ directory. Is this the directory you’re working on? (just to be sure).Peter
Forum: Themes and Templates
In reply to: css txt highlight roll-overYeah, you should not add it to the a:hover tag, but to the a (without the hover).
That way a:hover inherits the padding from a.
You could remove the padding-left from #navlist li to enhance the effect.
The a:active pseudo tag is probably what you’re looking for for your other question, however I have seen cases that didn’t work like expected.
Peter
Forum: Themes and Templates
In reply to: css txt highlight roll-overyou could add some padding to the a tag.
Peter
Forum: Themes and Templates
In reply to: Getting pages by nameForum: Themes and Templates
In reply to: Everything is centredMy guess is that you’ve overwritten your style.css, however I cannot be sure.
The center text is done by
text-align: center;in your body, which is a IE hack to make the layout center. What’s missing is thetext-align: left;in #page.But your whole layout is messed up.
Peter
Forum: Themes and Templates
In reply to: Can I use a special theme on a single page onlyPeter
Forum: Fixing WordPress
In reply to: XML Parsing Error: XML or text declaration not at start of entityIt’s kinda funny that this suddenly emerges at more places at once. The article before the last on my site seemed to be served by rss, but the last isn’t.
So somewhere between the 6th of November and the 19th something changed somewhere to prevent rss feeds from working.
Although a plugin or two has been updated during this period, but also WordPress itself, I tried to deactivate the plugins one by one, but doesn’t seem to make any difference.
I’m going to dig a bit deeper…
Peter
Forum: Themes and Templates
In reply to: HUH!? cant change my <h1> stylesWhy so cryptic about your homepage? Afraid you might attract some visitors? 😉
Anyway, the beauty of CSS is that declarations can be overridden by declarations made later in the same style sheet.
I don’t know exactly what you’re trying to achieve, but if I change the h1 tag to 200%, i just get 200% of 12px (there’s only one h1 tag on your homepage btw).
Peter
Forum: Themes and Templates
In reply to: COMMENTSurl?
Peter
Forum: Themes and Templates
In reply to: Inserting a Post Image With Custom FieldsLike this?
Peter
Forum: Themes and Templates
In reply to: Blog entry time appears as error codesmaybe some plugin messing with the_time() function?
Try deactivating them one by one.
Peter
Forum: Themes and Templates
In reply to: Change name Catergory to GenreYou can create your own widgets (which of course then is an exact copy from the original one), you’ll have to put that code in functions.php of your theme.
The original Category widget is defined in /wp-includes/default-widgets.php.
You’re free to create your own.
Peter
Forum: Themes and Templates
In reply to: Change name Catergory to GenreAre they widgets? You can give widgets their own title.
(Admin panel, Appearance)
Peter