gregor
Forum Replies Created
-
Forum: Themes and Templates
In reply to: background imagesMake sure the path to your image is correct ( relevant to where the CSS file lies). For example:
site root> wordpress> my_blog> assets> mycss.css
site root> wordpress> my_blog> assets> images> bkg> image.gif
The CSS would read:
body {
background: url(images/bkg/image.gif) no-repeat top left; }
The image and the CSS file both lie in the assets folder … so you just have to tell the CSS to look two folders “lower”, in the “images” and then “bkg” folder, for the background image.Forum: Themes and Templates
In reply to: Please C&C my blog designYour design could be easily achieved using CSS rather than tables for layout. Also, using CSS = less markup which = significantly lower k filesize which = happier visitors because they won’t have to wait as long for the page to load.
Forum: Themes and Templates
In reply to: Please C&C my blog designLooks great! Fantastic design!
Forum: Fixing WordPress
In reply to: Getting Rid of “Links” in get_linksWhere did you find
this code? The Links.php file?
<?php wp_get_linksbyname('Links'); ?>
Forum: Your WordPress
In reply to: I Guess its ready ….Looks good … I left a comment Re: Firefox.
Forum: Themes and Templates
In reply to: Menu (sidebar) CSS problems^ Nicest gesture ever.
Forum: Your WordPress
In reply to: UrbanWhore.comLooks pretty good … I like the minimal approach. Where did you find the”Recent posts” script? Anyway you might be able to post?
Forum: Themes and Templates
In reply to: Bullets in titleHere’s what you want to do with the above:
#menu { …. keep what you have up there but follow it in the CSS with …
}
#menu ul {
list-style-type: none;
}
#menu ul li {
list-style-image: url(images/bullet.gif);
margin-left: 20px;
}
This second bit of CSS means … “ok, for all list items in an unordered list that’s part of themenu DIV … have these properties. In this case, “use this image as the bullet”. This is possible because you have stated that you want all unordered lists (the parents of list items) to have no list-style-type.
In case I’m confusing you any further you might want to take a look at this very informative article.Forum: Your WordPress
In reply to: Name changeYou may want to edit your link … 😉
Forum: Themes and Templates
In reply to: idiors guide?Should be called “wp-layout.css” I believe. Search your folders for that …
Forum: Themes and Templates
In reply to: Display Issues: IE vs Gecko BrowsersThanks. Unforuntaely (in IE) positioning the Right DIV content before the Centre DIV causes all of the Centre content to push itself to the bottom of the page.
I’m also wondering why after entering new catgories into the database they don’t show up … even after multiple page reloads?!Forum: Themes and Templates
In reply to: Display Issues: IE vs Gecko BrowsersOoops … the default template PHP is here.