ikaring
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Upgrade errorHi.
Some of the errors seems to be imcompativility with PHP 7.x.
Pls try disabling those plugins and use default theme.Forum: Fixing WordPress
In reply to: Aligning ListsYou have set
text-align: right;.BTW, bullet icon of ul lists are not visible in my browser.
Pls check font support for the character.
https://www.fileformat.info/info/unicode/char/2bc8/fontsupport.htmForum: Fixing WordPress
In reply to: Aligning ListsJust add
display: inline-block;onol li:before.Forum: Fixing WordPress
In reply to: “Text” and “Images” not displaying well on mobile.Good:)
Forum: Fixing WordPress
In reply to: “Text” and “Images” not displaying well on mobile.I’m not familiar with WPBakery, but there might be css class to arrange column order.
FYI, this thread is the same problem. Hope that helps.
https://themenectar.ticksy.com/ticket/1517682/Forum: Fixing WordPress
In reply to: “Text” and “Images” not displaying well on mobile.Hi.
Which images you want to fix position?
Everything looks ok for me.Forum: Fixing WordPress
In reply to: JAVASCRIPT Seems to be NOT loadingHi.
If that is not because of themes, it is recommended to try reinstall wp core.In your homepage, there is a 404 error of Inter-upright-var.woff2, font file for TwentyTwenty theme.
I doubt some files are missing in the installing process.Before that, I would check if there is no error by setting WP_DEBUG to true in wp-config.php.
Forum: Fixing WordPress
In reply to: ワードプレスがインストールできませんconohaサーバーに問い合わせるのがよろしいかと思います。
Forum: Fixing WordPress
In reply to: Disable Active LinksHi.
I assume there is a setting for active state of menus.
You’d better ask Elementor team, since it is a premium theme.Forum: Fixing WordPress
In reply to: Continued “temp-write-test” File IssueHello.
Try adding the following line in your functions.php:
define('FS_METHOD', 'direct');This page might be describing your problem, I guess.
For FS_METHOD, check out here:
https://wordpress.org/support/article/editing-wp-config-php/#wordpress-upgrade-constantsForum: Fixing WordPress
In reply to: Mobile headerSure, here it is:
@media only screen and (max-width: 767px) { .flexnav li a, .flexnav li a.is-active, .flexnav li a:hover { background-color: rgba(255,255,255,.2); color: #000; } }However it is recommended to learn how to use DevTools of browser for further customization.
Cheers.Forum: Fixing WordPress
In reply to: Mobile headerHi.
Try put this in additional css.@media only screen and (max-width: 767px) { #main { margin-top: 40px; } .home .container { padding-left: 0; padding-right: 0; } }Forum: Fixing WordPress
In reply to: White Space Between Embedded VideosPls add above css in Additional CSS, in Appearance -> Customize.
That should fix the spaces.I use DevTools of the browser. If in Google Chrome, right click on page element and click “Inspect”(or something similar. I dont know English menu, I use Japanese one).
You can browse DOM structure with CSS rules related to the element.Forum: Fixing WordPress
In reply to: White Space Between Embedded VideosIf so, that might be something to do with the theme or plugin.
BTW, here is the css to tweak for now:.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper:before { display: none; }- This reply was modified 6 years, 8 months ago by ikaring.
Forum: Fixing WordPress
In reply to: How to change my blog titles from H2 to H1It should be written in single.php of your theme, but it seems page title (gray background under header section) is wrapped with h1.
Page title is generated twice.- This reply was modified 6 years, 8 months ago by ikaring.