Medizinische Abkuerzungen
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: I don’t know how to describe this but …..The first letter in your html-file is the <
If you changed your files look for a solo <-sign outsiede the php-Code.
Forum: Themes and Templates
In reply to: aligning bullets at top of list item rather than middleIn your style-sheet-file you do not give an vertical-alignment for the img.
You can change the
#sidebar ul ul li
{
margin:0;
padding:0;
padding-left:10px;
margin-left:10px;
background:url(img/subcat_bullet.gif) no-repeat left;
}add top:
background:url(img/subcat_bullet.gif) no-repeat left top;
but you have to redraw your image then (it is a little bit to high).
Forum: Fixing WordPress
In reply to: Change the “More” to say something elsePerhaps you are right
Forum: Fixing WordPress
In reply to: images and textIf it is just one line use
<br />text…
if there are more lines use
<br style=”clear:both;” />
Forum: Themes and Templates
In reply to: Sidebar leaps to right in Firefox onlyOn click Firefox forgets the style-tag float: right;.
Looks like it is an Browser-Error. You have to format it in another way if you want to get rid of it.
Forum: Plugins
In reply to: include php on a pageIt’s still an Url use something like
test/test.php (if the file is in the subdir test)
or/var/…/htdocs/wordpress/test.php (if you know the complete path on your webserver)
Forum: Fixing WordPress
In reply to: Examples of wordpress as CMSForum: Fixing WordPress
In reply to: Header graphic size and text underneath itLook a little bit further down.
It is in the middle of the file.
Forum: Fixing WordPress
In reply to: Replacing date with a graphicDo you want to display a static date-img, or an up-to-date img containing the actual date?
Forum: Themes and Templates
In reply to: Problem using base href tagIf you link to an external link (starting with https://) the base-href-tag in html is ignored.
Or did I get you wrong?
Forum: Fixing WordPress
In reply to: Missing Link BulletsDid you change your theme?
There are no images in your page (nor your css-file).Forum: Fixing WordPress
In reply to: Header graphic size and text underneath itIn your style.css you will find a section
#header {
padding: 0;
margin: 0 auto;
height: 200px;
…change height to
height:150px;
or whatever you like.
Forum: Themes and Templates
In reply to: Simple Problem with Borders (Simpler Version)relative will display a border around the largecontainer. But around the largecontainer in the old position (before moving it down to position 194
Forum: Themes and Templates
In reply to: Simple Problem with Borders (Simpler Version)If you use a position-tag in a div it will be positioned relative or absolute to the parent, but not inside the parent-div.
Forum: Themes and Templates
In reply to: Coding; IE vs FireFox problem!It is a css-problem.
The original-theme seems to work.
Did you change anything in the theme-subs?