eyeonthetigers
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Dummies guide to removing www. from domainDoesn’t work guys! Thanks for trying though.
http://eyeonthetigers.co.uk just goes to a random page on my server – I assume there’s something I need to do in my server backend, no? I did change the details in WP, but have changed them back again now…
Forum: Themes and Templates
In reply to: CSS/Widget queryHere’s basically what I’m trying to show in the sidebar (using the Samsarin PHP Widget).
echo "<ul><a href=\"$host"."/viewtopic.php?t=$resultsow[topic_id]\">$topics_title</a></ul>";Any ideas?
Whenever I’ve tried it (I’ve tried
<li>and
<ol>tags too), it’s always displayed in the same size font as the ‘Categories’, ‘Pages’ and ‘Archives’ headings in the sidebar.Thanks.
Forum: Fixing WordPress
In reply to: Images/text not justifyingSorted.
The CSS was telling the posts to float all images to the left, so I deleted that and put these in instead.
img.centered { display: block; margin-left: auto; margin-right: auto; } .right { float: right; } .left { float: left; }Forum: Themes and Templates
In reply to: CSS problem – font sizes in forms, tables etc.Brilliant, thanks!
That bit of code didn’t do the trick itself, but it set me on the way to coming up with this, which worked:
td{
font-family: Arial, Verdana, sans-serif;
font-size: 14px;
margin-bottom: 40px;
}form{
font-family: Arial, Verdana, sans-serif;
font-size: 14px;
margin-bottom: 40px;
}Forum: Themes and Templates
In reply to: CSS problem – font sizes in forms, tables etc.I probably gave a bad example there.
Here’s a better example: http://www.eyeonthetigers.co.uk/test/
You can see the difference between the normal text and the text in a table.
Thanks in advance!