Aria
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Twenty Eleven Page changes widthsAnother advice: I also suggest not to tweak directly the theme (php or CSS), but to use what the WP community (and moderators) calls a Child Theme. The reason is if you do upgrade your theme, all your modifications will be lost.
Creating a Child Theme is really easy to do, and is worth the effort so as to maintain your site in the long-run.Forum: Fixing WordPress
In reply to: Twenty Eleven Page changes widthsHi Fetz, I have no answers, I’m sorry.
I’ve downloaded Opera on this occasion, and flickered once again with these 3 browers (FF, Opera, Chrome, for Windows 7, screen: 1280 x 800), through all pages and posts, without noticing any difference. (I’ve discovered a great musician, congrats!)
By the way, I suggest you delete the little “f” playing hide-and-seek from the very begining of your main stylesheet. It doesn’t prevent the browers from interpreting correctly the stylesheet anyway, but well, that’s probably better.
Did you customize the css?
Forum: Fixing WordPress
In reply to: Page white spaceIn the style sheet called nggallery.css,
find the class .ngg-galleryoverview and add a little bit of margin-bottom.
It could look something like that:/* ----------- Gallery style -------------*/ .ngg-galleryoverview { overflow: hidden; margin-top: 10px; margin-bottom: 40px; /* YOU ADD THIS LINE */ width: 100%; clear:both; display:block !important; }Forum: Fixing WordPress
In reply to: Small spacing between the linesAs you’re using a commercial theme, you probably need to seek support from your theme’s vendor http://ithemes.com/support/
Forum: Fixing WordPress
In reply to: Twenty Eleven Page changes widthsHi Fetz,
I had a look with FF and Chrome, and both pages “Home” and “Vita”, alongside the others, appear to have the same width for me: 900px.
This width is defined by your style sheet (line 194).one-column #page { max-width: 900px; }Forum: Themes and Templates
In reply to: [Theme: SmartOne 1.0.2] Header image linkForum: Everything else WordPress
In reply to: Category colors?alchymyth, don’t let me be misunderstood, it wasn’t a mocking commentary, I really beleive it is easier in that case, since we just add 2 lines in the same CSS.
Forum: Everything else WordPress
In reply to: Category colors?Haha, that’s right, alchymyth’s solution is far way better and more simple!
Forum: Everything else WordPress
In reply to: Category colors?A bit of php, a bit of styling (CSS).
If you follow the code suggested here, it might be Ok. Don’t be too impressed by the code, I’m no php queen myself.You can even style each post differently if you want!
Forum: Everything else WordPress
In reply to: How to add a Language detection hint?Goodness gracious, Ipstenu! that’s tough…
I really don’t know how do that.I would like to detect Portuguese, French, Italian and Spanish – the default is English.
Here is the php code I use.
Unfortunately, I ignore how to retrieve the first 2 letters from the browser.<?php function detectlanguage() { $langcode = explode(";", $_SERVER['HTTP_ACCEPT_LANGUAGE']); $langcode = explode(",", $langcode['0']); return $langcode['0']; } $language = detectlanguage(); if($language=="pt-BR"){ echo "Brasileiro no peito.";} if($language=="fr-FR"){ echo "Bonjour French people.";} if($language=="it-IT"){ echo "Ciao bella.";} if($language=="es-ES"){ echo "Hola mi amor";} ?>It seems obvious, and I’m eager to learn if pointed towards good tut, but I’m no php master. Help please : )
Forum: Fixing WordPress
In reply to: Can I change category ID's to category name in URL'sI’d like to mention an alternative technique, without any plugin installation but with a line in
.htaccess. Source: Digimantra1. Connect to your website server using a FTP client.
2. Take backup of your .htaccess file. Now open it in editor and append the following line –
RewriteRule ^category/(.+)$ http://www.yourblog.com/$1 [R=301,L]3. Save the file and now you can access your category pages without category in the URL, such as http://yourblog.com/catname
Forum: Everything else WordPress
In reply to: How to add a Language detection hint?Thank you Ipstenu, I’m going to give it a try, there is a first time for everything!
Forum: Fixing WordPress
In reply to: Can I change category ID's to category name in URL'sHi Ashwani,
you have to set the links of your website.
Login > (left sidebar) Settings > PermalinkIn the Permalink settings page, select the custom format.
The url should look like
http://www.abc/category/news.In the Permalink Settings page, you can change the term ‘category’ from something else (ex. ‘topic’, etc.).
If you don’t want anything, then you can use the WP No Category Base plugin.
Hope it helps!
If so, please mark the thread as resolved.Forum: Installing WordPress
In reply to: Ive been dim and need some sorting more than one siteHi John,
I’m sorry not to be good enought to help you to roll back and recover the first site.
But I would like to mention a feature which has helped me a lot since WP 3, which is Multisite and creating a network. I can admin different blogs from the same interface and with the same installation (not to say, the same template and CSS sometimes). Worthwhile to mention!
Forum: Themes and Templates
In reply to: How to delete posted on, written by and category?You’re welcome!