shadow
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Why does my font change after the first paragraph?Your first paragraphs are not starting with a
tag so they are not in a correct paragraph. The consecutive pararagraphs are, so they are picking up the correct CSS.Have a look in your index.php file and see if your code looks ok.
This is only happening on your front page it seems.
Forum: Fixing WordPress
In reply to: dynamic sidebar QIn your theme files, look for dynamic_sidebar.php or something similar.
It depends on how your theme author named it, but it should be something like that.
Failing that, look for left or right sidebar.php as well.
Forum: Themes and Templates
In reply to: Spacing between image and textAll sorted now then it seems π
Forum: Everything else WordPress
In reply to: Newbie Question. Is WordPress the right solution?WordPress can handle most static looking sites easily.
Take a look at my own sites at The os42 Collective as an example and the new Ubiquitous theme too, which is moving away from the coventional blog look and structure.
Forum: Your WordPress
In reply to: Simply Simplicity – my work in progressI meant to mention earlier, this is a handy tool:
Forum: Everything else WordPress
In reply to: blog hacked, please help!!I moderated the links on your original post, as your post was stuck in the Akismet spam filter.
Forum: Fixing WordPress
In reply to: Accidentally Deleted My Site! Need Help RestoringDo you have your database backed up or not? This will be a .sql file
Forum: Fixing WordPress
In reply to: Each posts with (linked) tags, how?Add
<?php the_tags(); ?>wherever you would like the tags to display. [Only possible within the Loop]Forum: Fixing WordPress
In reply to: Creating pages outside of blog directoryNot really. Not if you want to use the same WP install anyway.
Forum: Themes and Templates
In reply to: size problem on thatothereden themeFirst, you need to do a few things in your footer CSS
You have a few spelling problems, which I fully understand as to why, but they just will not work:
So, change the current:
#footer {clear:both; background-image: url(images/footer.gif); background-heigt: 220px; backgorund-wheight: 800px; background-repeat: no-repeat; text-align:center; padding:10px 150px 10px 120px}to
#footer {clear:both; background-image: url(images/footer.gif); background-height: 220px; background-weight: 800px; background-repeat: no-repeat; text-align:center; padding:10px 150px 10px 120px;}Do that first and then we can look at the next bit.
Forum: Fixing WordPress
In reply to: New page to the site – Doesn`t work :(Try deleting your .htaccess file and reloading an empty one again and then resetting your permalinks
Forum: Fixing WordPress
In reply to: New page to the site – Doesn`t work :(Ok, can you do somethingfor us now?
Go creat a page and give it a title of ‘Test’.
It doesn’t really need any content, but perhaps just add a one line sentence so we can check that as well. Take note of the url when it is created – you should be able to view it/check it, in Manage – Pages.
And then could you post the url here so we can see what is happening.
Forum: Installing WordPress
In reply to: The interfaceYes, it works just the same as previous versions.
Forum: Fixing WordPress
In reply to: New page to the site – Doesn`t work :(The cookie issue is another problem completely.
More information here:
Forum: Fixing WordPress
In reply to: Exporting my Blog to another wordpressTake a look here for a bit of helpful reading.
http://codex.wordpress.org/Moving_WordPress
The only ‘tricky’ bit [if at all] is making sure you backup your current database, import the database to the new install location and change a couple of lines in your tables.
Don’t hesitate to come back and ask for more help if needed.