auctionmaster
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Free Header GraphicsMost of them look excellent.
You might create some headers where the end fits to the beginning to let it fill a whole page without having to load large images!Forum: Fixing WordPress
In reply to: random (?) character substitution problem in htmlWell, this kind of character replacement isn’t used for URLs because of reasons like this one:
The “&” normally introduces a PHP Get parameter.I only recommend their use within the BODY and in the TITLE tags. And by the way it’s only necessary for some special characters if there’s no charset specified. What was your actual reason to mask the X ?
Forum: Themes and Templates
In reply to: A few questions on custom themeRegarding number 3…
You should slice the image and link each of them this way:
<a href="x"><img src="x" alt="x" /></a>
The alternative way (not recommended) is to do this several times in a row:
<a href="x" style="width:70px;height:12px;"> </a>
Another alternative is the use of imagemaps. They’re better than the thing before but i don’t recommend that at all.regarding number 2…
What about absolute positioning? I have no idea how you got it there because I haven’t looked into the code… but if you do what i said for number 3 this problem shouldn’t occur!and number 4…
look at the stylesheet: #menu takes 50px of height. Decrease it.Forum: Fixing WordPress
In reply to: How to move header text downBikepunk, open the header.php, choose the img-tag or whatever you want wo move and add
style="margin-top:10px;"
to it. This way you don’t have to find the right place in the stylesheet.Forum: Fixing WordPress
In reply to: embedding blog into existing pages?The most easy way to reach this is creating a so-called iframe, but I wouldn’t recommend that. If you want to know, how to do it: just ask!
Forum: Fixing WordPress
In reply to: How to move header text downIt actually is the same ??
Forum: Fixing WordPress
In reply to: How to move header text downThe stylesheet should look this way if you want to move everything that is real text:
#header h1 {margin-top:10px;}
if the whole page should be moved down check out this one:
body {padding-top:10px}
and choose a number you like
Forum: Themes and Templates
In reply to: Sidebar question. How did digg.com…Thanks for the link, i’m gonna check this out.
Forum: Themes and Templates
In reply to: Sidebar question. How did digg.com…Is it possible to have round corners in every edge?
Forum: Installing WordPress
In reply to: <?php } ?>Weird thing, I haven’t seen this construction yet
Forum: Everything else WordPress
In reply to: php on the brainLuckily my brain is not messed up that much