Benachi
Forum Replies Created
-
To center align the logo, you can replace
.site-branding { float: left; }
with
.site-branding { float: none; text-align: center; }
Forum: Fixing WordPress
In reply to: Can someone briefly explain to me how WP resizes images?In most cases, WP serves the same 1000px image, but CSS stylesheet will adjust and automatically scale the image to fit on a smaller screen.
Hope this helps.
Forum: Fixing WordPress
In reply to: Unable to find body tag in WP Bootstrap Starter ThemeHi!
() is missing after get_template_directory_uri.
function add_popper() { wp_enqueue_script('popper-js', get_template_directory_uri() . '/js/node_modules/popper.js/dist/popper.js', array(), '1.14.3', true); } add_action( 'wp_enqueue_scripts', 'add_popper' );
Forum: Fixing WordPress
In reply to: Secondary MenuHi. Locate the code below and remove the first one. Currently, you have two.
</div><!– #header-text-nav-container —>
Removing the first one will make the secondary menu to have the same width as the primary menu.
Hope this helps.
Hi. On the style.css, line #3010
Change the following code
.scrolloff {
pointer-events: none;
}To this
.scrolloff {
pointer-events: auto;
}Hope this helps.
Forum: Fixing WordPress
In reply to: 「外観」の「カスタマイズ」がエラー500で表示されないこのサイト(日本語)によると、サーバー側で容量の制限をあげて問題解決できたそうです。
サーバー側の容量がオーバーしていていないか確認してみてください。日本語のサポートも利用してみてください。
https://ja.www.ads-software.com/support/forum/how-to-and-troubleshooting/Forum: Fixing WordPress
In reply to: Creating Basic shapes in wordpressPlace your cursor where you want the image of the basic shape to appear and click the Add Media button. Then navigate through the uploader screen to insert the image.
Here is more detail.
https://codex.www.ads-software.com/Inserting_Images_into_Posts_and_PagesForum: Themes and Templates
In reply to: [momoyo] Mobile home page helpThank you for letting me know. The newer version has been released today to correct the issue.
Forum: Themes and Templates
In reply to: [momoyo] Error in CSSGreat catch! Thank you for letting me know.
The newer version has been released today to correct the issue.Forum: Themes and Templates
In reply to: [momoyo] Warning message with momoyo themeHi njdebellevue
Sorry to hear you’re having an issue. The newer version has been released today to correct the issue.
If you prefer, you can replace the code below in inc/template-tags.php via Appearance < Editor.
Replace
/* translators: used between list items */ $tags_list = get_the_tag_list( '', esc_html_x( ' ', 'list item separator', 'momoyo' ) ); if ( $tags_list ) { /* translators: 1: list of tags. */ printf( '<span class="tags-links">' . $tags_list . '</span>'); // WPCS: XSS OK. }
With
/* translators: used between list items, there is a space after the comma */ $tags_list = get_the_tag_list( '', esc_html_x( ' ', 'list item separator', 'momoyo' ) ); if ( $tags_list ) { /* translators: 1: list of tags. */ printf( '<span class="tags-links">' . esc_html__( ' %1$s', 'momoyo' ) . '</span>', $tags_list ); // WPCS: XSS OK. }
Thank you for choosing my theme!
Forum: Plugins
In reply to: [cTabs] cTabs plugin: How can I link to a specific tabWere you able to link to a specific tab?
I’m trying to find the solution for this as well.