st1an
Forum Replies Created
-
Forum: Installing WordPress
In reply to: How to clear out old site?If you can access the server, delete all your old blogfiles, and upload a fresh copy. Create a new database and write down the name and password, then paste it in the config.php file in your wordpress-folder. If I got you right 🙂
Forum: Themes and Templates
In reply to: Editing Thememeekomom:
The reason you can’t edit your files is because of something called CHMOD, search it.
I also recommend editing your files on your own computer, then uploading them.Forum: Themes and Templates
In reply to: Change Button BackgroundForum: Fixing WordPress
In reply to: Tutorials for Editing formatting posts?To generate a paragraph.
<p>text</p>
To generate bold text.
<b>text</b>
To generate italic text.
<i>text</i>
To generate a linebreak.
<br />That’s the basic ones. You can read a lot on W3schools.com, and here is a link to the basic tags.
Forum: Everything else WordPress
In reply to: <br> or <p> issue (no more spaces between paragraphs)…I presume you have this in your CSS:
* { margin: 0; padding: 0; }
By adding this:p { margin-bottom: 1em; }You’ll get back the linebreak after ended paragraph. Was looking for the same thing yesterday.
Forum: Installing WordPress
In reply to: Database/User setup possible on Daily.co.uk?Then you should mark this thread as resolved ( at the very top )
Forum: Fixing WordPress
In reply to: help please: Cannot remove huge amount of (spam) commentsJust to ask, have you activated Akismeth ?
Forum: Fixing WordPress
In reply to: Editing posts generates invalid xhtmlTurned off the wysiwyg-editor, and the code stays the same, don’t need it anyway, but shame for the other users on the site, if they do not know XHTML, because I doubt they will not be able to create valid XHTML.
Forum: Installing WordPress
In reply to: Database/User setup possible on Daily.co.uk?shikensha,
I had the same problem with my host, so I changed the db_host to the ip-adress of the server. Worked like a charm for me.define(‘DB_HOST’, ‘192.xx.x.xx’);
Forum: Plugins
In reply to: Can I make a page based on the themefiles ?I was looking at Template_Hierarchy and found out that if I rename the file to category-13.php ( 13 being my “gallery” category ) I can link to the page with
/?cat=13.Now I only need something to fill it with! Thanxz!