Seemingly;
destination local page must be in the form: <a href=”<?php bloginfo(‘url’); ?>/?page_id=1982″>
rather than postname.
Seemingly;
destination local page must be in the form: <a href=”<?php bloginfo(‘url’); ?>/?page_id=1982″>
rather than postname.
on chrome canary:
same adventure-child:
192.168.0.16/wptest: wp3.9, Adventure3.8
norikoguide.pepper.jp/norikoshop: wp3.8.4,
To increase upload_max filesize in migrating database.
/etc/php5/apache2# gksudo gedit php.ini
upload_max_filesize = 10M
post_max_size = 10M ;not necessary just fun.
service apache2 restart
If any(absolutely any!) file that take part in construction of the code of final HTML-page(the one to be sended to client) has encoding with BOM – final HTML-page WILL BE UTF-8-BOM. That is: you whole site should NOT contain even 1 file with BOM.
:first-of-type and :last-child are CSS3.
:first-child is CSS2 which is supported by older browsers.
Serious issues:
1. Backgrounds of “contents” and “sidebar” are not the ones set by the customization and also become transparent. Basically because IE cannot respond rgba specification.
2. Menu items of the menu bar in the header are listed vertically.
3. Adventure customization is done in functions.php.
4. Function adventure_ie_css() is very compact one to cope with isuues 1. 2. , but not activated in the original.
5. The following was necessary and worked fine. (See functions.php in adventure-child.
6. function remove_thematic_actions() {
remove_action(‘wp_head’,’adventure_inline_css’,50);
}
add_action(‘init’,’remove_thematic_actions’);
add_action(‘wp_head’, ‘child_adventure_inline_css’, 50);
7. Include adventure_ie_css().
8. Issues 1. 2. were almost solved. But “content” background is not transparent at all, whereas sidbebar background i s half transparent.
1. FTP files to upload directory.
2. Add From Server:
2.1. Select Files in the upload directory.
2.2. Hit “import”
owner of “uploads” is www-data and mode is r–.
The mode must be changed to rwx by root.
When checking the fabicon set up, clear the history of the browser every time.
http://codex.wordpress.org/Creating_a_Favicon
If there is already an old favicon.ico file in your current theme’s main folder, delete it using FTP Clients.
Codex tools: Log in
A favicon (short for “favorites icon”) is an icon associated with a website or webpage intended to be used when you bookmark the web page. Web browsers use them in the URL bar, on tabs, and elsewhere to help identify a website visually.
A favicon is typically a graphic 16 x 16 pixels square and is saved as favicon.ico in the root directory of your server. You can use a favicon with any WordPress blog on a web server that allows access to the root directories.
A favicon can be created using any graphics/image editing software, such as GIMP, that allows the saving of .ico files. There are also online services that will allow you to create a favicon for free.
The image should be clear and is usually designed to match your blog’s image and/or content, a big task for something so small.
To prepare the image to be saved as favicon.ico:
If you’re using an online service to create your favicon, such as Faviconer.com (creates 24bit favicon.ico with a transparent background, favicon.co.uk or Dynamic Drive, follow the instructions provided by the site and then download the favicon.ico image to your computer.
If there is already an old favicon.ico file in your current theme’s main folder, delete it using FTP Clients.
—–The following was not necessary for japantourguide.lolipop.jp but necessaray for localhost/wptest ———————–
Insert the following in <head>:
<link href=”favicon.ico” rel=”shortcut icon” type=”image/x-icon” />
type declaration was necessary for the file generated by Faviconer.com.
—————————-The following was not effective for IE8 to see favicon ——-
In order for your favicon to show up in some older browsers, you will need to edit your page header. Remember, the best way to edit your theme’s files is via a Child Theme. For the purpose of the following instructions you will need to create a copy of your parent theme’s header.php file in your child theme.
<link rel="shortcut icon" href="<?php echo get_stylesheet_directory_uri(); ?>/favicon.ico" />
——————————————————————————–
Doesn’t effective, or mess up.