crayoncrisis
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Review SiteIt is always a good idea to upgrade to the latest version.
You can use any theme for a site that has a static front page.
Forum: Themes and Templates
In reply to: Category specific cssAh, I think that you are absolutely right. I didn’t get that part. The Template Hierarchy for single post display seems to be:
- single.php
- index.php
I’ve been using the Sandbox theme lately, and it has a function giving classes to the body element. Not quite what you were asking about, but it does give you a body with a class like s-category-dog, letting you style that specifically.
Hope someone else can answer about the seperate style sheets though, I want know that too now that I see this wouldn’t do the trick for a single post.
Forum: Themes and Templates
In reply to: Category specific cssYou just need a Category Template and also check out
Different Category Format.Forum: Themes and Templates
In reply to: Grid-A-Licious Modifying anyone?Hello! ?? There are lots of people here, but instead of asking a simple question, you are kind of asking for somebody to do a load of web design for you…
Sounds like you need to learn some html and css, and a great place to start since you are using WordPress is by Stepping Into Templates.
Forum: Themes and Templates
In reply to: Change Page button to link to a page – Theme generic designYou could code your menu manually?
It would be easier for somebody to help you, if you give more information. You are not really asking a question that it is possible to answer.
Forum: Themes and Templates
In reply to: Novice-Ho do you replace theme titleThe words Parchment Theme is not text – it’s a graphics file, so you can’t use the font to write your own title. It’s like if you had a photo of a road sign. Sorry for such an exaggerated example, just trying to be explain clearly… ??
To get your own title in this theme, you would need to generate your own graphics file to replace this one: logo.gif
Forum: Themes and Templates
In reply to: Theme’s not appearingDid you delete the directory for the Current Theme before uploading new ones? That can make the Manage Themes in wp-admin go blank.
Forum: Themes and Templates
In reply to: CSS help, seems to be ignoring my #container settings.The Sandbox theme is what they claim: “a canvas for CSS artists”.
Happy to have helped.
Forum: Themes and Templates
In reply to: Need help with code…I don’t know the theme you are using or this plugin, but check out Managing Plugins and Widgetizing Themes.
Lycka till.
Forum: Themes and Templates
In reply to: Autofocus – Get more spacing between individual text lines?Perhaps this article about headings and CSS can help you.
Forum: Themes and Templates
In reply to: CSS help, seems to be ignoring my #container settings.I’m not quite sure what layout you are aiming at, but you have deleted a bit too much from the original sandbox and messed up your divs. (Wrapper and footer are not closed, is what I see at a first glace.)
If you fix the html, the something like this will give you a layout with fixed width centered in the browser window, with the elements being floated instead of absolute positioned. Look’s like you have been trying a little bit of both at the same time.
/* ----- css for layout structure ------ */ div#header {height: 200px; } div#wrapper {width: 800px; margin-left: -400px; position: absolute; left: 50%; display: inline;} div#container {width: 600px; float: left;} div.sidebar {width: 180px; float: right;} div#secondary {clear: right;} div#footer {clear:both;}
Forum: Themes and Templates
In reply to: Need help with code…get_most_rated
isn’t a template tag likewp_get_archives
Did you install the plug-in WP-PostRatings?
Forum: Fixing WordPress
In reply to: Uploader not allowing thumbnail view radio buttonA missing GD library was the problem here aswell, and uploader is now working fine aften they installed it on the server that this site was on.
Forum: Fixing WordPress
In reply to: Uploader not allowing thumbnail view radio buttonI have the same problem. I run several other WP-sites on different servers, and this does not occur on any of the others sites.
But I see that the reason why I can’t choose between different image sizes, is probably because they are not generated when I upload an image.
If I upload “image.jpg” the directory wp-content/uploads/2009/05/ should afterwards contain four different files with new names containing the sizes in pixels, for example;
- image-150×150.jpg < thumbnail
- image-300×200.jpg < medium
- image-1024×682.jpg < large
- image.jpg < full size
But instead, only the original file is present.
I have no plug-ins, and this is not an issue with the file I am testing with.