athique
Forum Replies Created
-
Forum: Plugins
In reply to: A lot of plugins are not working with a theme I’m using that uses moo,fxBump!
Anyone?
Forum: Plugins
In reply to: A lot of plugins are not working with a theme I’m using that uses moo,fxBump!
I’ve tried contacting the creator of the theme a few times but no response.
Can anyone help?
Forum: Themes and Templates
In reply to: How do I fix this small problem? (pic of problem in post)Hey thanks Haecceity, that worked perfect. The value needed to be a minimum of 18 pixels so I just left it at that figure and everything looks fine.
Thanks again.
:o)
Forum: Themes and Templates
In reply to: How do I fix this small problem? (pic of problem in post)https://www.athique.co.uk …that’s the blog.
I think I need to change something in the style sheet that would give the category titles ‘more space’. What do I change?
Forum: Themes and Templates
In reply to: How do I fix this small problem? (pic of problem in post)Bump. Anyone?
Forum: Plugins
In reply to: Simpleflickr won’t work due to flash probBump!
Forum: Installing WordPress
In reply to: page titlesGo into your theme editor and select the stylesheet.
Your page titles are in h2 tags so if you look for the following code…
h2 { font-size: 1.6em; }
…you can edit it to change the font size of anything in h2 tags..in this case your titles.
Similarly, editing the following bit of css…
h1, h2, h3 { font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif; font-weight: bold; }
…will change the font for anything in h1 (main title), h2 (post title), or h3 tags.
To change h2 only just copy and paste that same bit of code so it’s duplicated. Delete h2 from the first bit of code and then delete h1 and h3 from the second bit of code. It should end up looking like this…
h1, h3 { font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif; font-weight: bold; } h2 { font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif; font-weight: bold; }
Then make changes to which ever parts you like.
I hope that’s understandable.
Forum: Plugins
In reply to: Simpleflickr won’t work due to flash probOk…I now know that this has something to do with the moo.fx script being used in my theme.
I changed to the default theme and although the flash viewer still didn’t load properly, at least it was there on the page.
I’ve tried lots of other gallery plugins and none of them work properly so it must be something to with the moo.fx script being used.
Can anyone help here?
EDIT: Just tried lightbox with the default theme and it worked perfectly so it is definitely something to do with the scripts used in my theme.
Thanks
Forum: Themes and Templates
In reply to: Displaying next and previous postsI fixed it by removing
query_posts('showposts=10')
. The<?php posts_nav_link(); ?>
tag works fine now.One last question though. I’ve set the number of posts to be shown as 10 in the options. Will removing the query_posts tag affect/upset anything else in the template?
Forum: Themes and Templates
In reply to: Displaying next and previous postsI know you said it wouldn’t work if The Loop in my theme had been customized, but is there any way around it to use the posts nav link?
Forum: Themes and Templates
In reply to: Displaying next and previous postsThanks for replying.
From what I know so far, the default Loop in a template is `<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>`This is what’s currently in my index file.
That said, would I be right in saying that it isn’t a customized loop?
Forum: Themes and Templates
In reply to: Displaying next and previous postsNeed some help on this one please. Thanks.
Forum: Everything else WordPress
In reply to: Instable <br/> !It should be
<br />
. There’s a space in there.Don’t know if it will solve your problem but that’s the correct way to write it in XHTML
Forum: Themes and Templates
In reply to: Sudden changes in theme..what’s causing them?Sorry…ignore this.
It was a </div> tag which I must have deleted accidentally that was causing the problem.
Forum: Themes and Templates
In reply to: Comment formhmmm….in the code you posted above…the relevant bit to edit seems to be <h3>Write a comment</h3>
Don’t know why it says that though because looking at your page source it should currently be saying ‘Leave a reply’.
Are you sure that the code you posted above is directly from your theme editor?
Anyhow you need to change that text inside the <h3> tag