styledsheet
Forum Replies Created
-
Forum: Plugins
In reply to: Looking for few plugins … look inside please!– When a category is selected, only a part of the article is shown (like 2 senteces and then “…”)
<? php the_excerpt() ?>i mean download a theme, upload it to the theme directory, and then change the theme under ‘Presentation’.
Forum: Themes and Templates
In reply to: help with image switch by browseryeah, in the stylesheet use the png as the default backgroung image for wherever you want it.
Then, make use of the IE6 hack, and tell it to make the defauly image as the gif.
i.e.
#header{ background:url(images/image.png) 0 0 no-repeat; } *html #header{ background:url(images/image.gif) 0 0 no-repeat; }Now, in any browser except for IE6, the background will be the png, and in IE6 the background will be the gif.
good luck?
Forum: Themes and Templates
In reply to: Andreas Theme Stretchopen the stylesheet and change the widths of container elements.
Perhaps you should use a percentage!
Forum: Themes and Templates
In reply to: Custom Field Image?add a file called functions.php to your template.
in it, write:
<?php function custom_image(){ echo '<img src="the location of your image" alt="" />'; } ?>Then, everytime hyou want to insert the image somewhere, write this:
<?php custom_image() ?>Is this what you’re looking for?
Forum: Themes and Templates
In reply to: Simple theme MK and MK2 released !it only looks like there is one…
you’ve erased the link to the stylesheet in your header.
In fact, you’ve erased ALL html tags, so there isn’t even a header.
if you don’t know anything about HTML or CSS, my suggestion is to redownload the theme, and reupload it. then don’t touch! 😉