ikaring
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to add margin / padding in group blocks in GutenbergAs to my env (Twentytwenty), group block has padding around.
However, you can add additional css class to the group block and set any css to it.- This reply was modified 6 years ago by ikaring.
Forum: Fixing WordPress
In reply to: Individual Links for Carousel ImagesHi.
Pls try disabling jetpack lazy image for this element.
That lazy image func first load 1px by 1px dummy image and replace it with real photo.
Since image heights are set to auto, initial image height is as tall as image width.That is the reason for blank space under slider.
Forum: Localhost Installs
In reply to: Using MAMP: still getting ‘error establishing database connection’Pls try DB_HOST as
'127.0.0.1'.Also, you might need to set the following if you did not replace them in db:
define( 'WP_HOME', 'http://localhost:10000' ); define( 'WP_SITEURL', 'http://localhost:10000' );Forum: Fixing WordPress
In reply to: Disappearing linksGood!
CSS for justify p tag inside single_blog_content:
.single_blog_content p { text-align: justify; }You would better learn css for more detailed styling:)
Forum: Fixing WordPress
In reply to: Disappearing linksNo need to be nervous about this.
It is just “additional” css. Im sorry to confuse.
First color is normal state, second is for mouse on state, focused, pressed and already visited link.
You can just delete the additional css if you dont need, or just change color code as you like.Forum: Fixing WordPress
In reply to: Disappearing linksYes.
They will overwrite existing color setting, I hope.Forum: Fixing WordPress
In reply to: Disappearing linksHi.
You can set additional css in Appearance -> Customize, like so:.post a { color: #00f; } .post a:hover, .post a:focus, .post a:active, .post a:visited { color: #1cb9c8; }- This reply was modified 6 years, 5 months ago by ikaring.
Forum: Fixing WordPress
In reply to: Alignment of captions won’t centerI dont see any caption aligned left.
Have you resolved?Forum: Fixing WordPress
In reply to: 𠮷 が表示できませんデータベースの文字コードの確認と、必要なら変換しないといけないです。
wp-config.phpの設定もご確認ください。CodexやphpMyAdminでの変更方法など参考ページ探してください。
Forum: Fixing WordPress
In reply to: i have an issue with word spacingI have checked it in multiple browsers, but there seems no issue.
Have you resolved?Forum: Fixing WordPress
In reply to: 𠮷 が表示できませんエンコーディングはUTF-8になっているでしょうか。
こちらでTwentytwenty テーマで確認しましたが、問題なく表示されます。Forum: Everything else WordPress
In reply to: I’m receiving forum notifications about other postsSame here.
And no notifications for follow-up replies.Forum: Fixing WordPress
In reply to: Can’t Login to WordPress.ORGHi.
If you can see the database, you can check user_email set to your account in wp_users table.
Pls check server panel for the database.Forum: Fixing WordPress
In reply to: Alignment of captions won’t centerHi.
Is thewp-caption-textclass name for your captions?
I dont find the class name in the page.
What is your caption for the first image, for instance?Paragraph under the photo is wrapped in div with class
post-content entry-content.Forum: Fixing WordPress
In reply to: Media Library to display ALT TEXTS in list viewHi.
How about this, in your functions.php:add_filter('manage_media_columns', 'posts_columns_attachment_alt', 1); add_action('manage_media_custom_column', 'posts_custom_columns_attachment_alt', 1, 2); function posts_columns_attachment_alt($defaults){ $defaults['post_attachment_alt'] = 'Alt'; return $defaults; } function posts_custom_columns_attachment_alt($column_name, $id){ if($column_name === 'post_attachment_alt'){ echo get_post_meta($id, '_wp_attachment_image_alt', true); } }