ikaring
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Adding padding (responsive) to my single postsJust wrap it with media query (iPad portrait as 768px wide):
@media all and (min-width: 769px) { .single-post .entry-content { padding-left: 20px; padding-right: 20px; } }Hi.
I dont know about isotope, but if it is just for fixed post order like 3rd and 12th posts, you can achieve with css only..grid-item:nth-of-type(3), .grid-item:nth-of-type(12) { // Add styles intended for .grid-item--width2 }Forum: Fixing WordPress
In reply to: Woocommerce store problem with my themeIt is better ask theme author for help, if you cant find options in theme customiser, since displayed outputs are closely related to the theme.
Anyway, quick workaround is to just remove the code block concerned.
If you dont know how to do that, you need to ask the author.Forum: Fixing WordPress
In reply to: Woocommerce store problem with my themeHi.
Found the theme here.
https://www.templatemonster.com/wordpress-themes/65626.htmlIs not there single-product.php or some?
First product is the post-thumbnail, so it is rather easy to find the code, I guess.Forum: Fixing WordPress
In reply to: Translation using lang html atributtes?Yes, there shoud be extra works and one page contents get too long.
Furthermore, what about custom fields, tags, dates?Forum: Fixing WordPress
In reply to: Translation using lang html atributtes?It is ok if that suits you, but I dont think Im gonna use it.
It sounds complicated for me to make/maintain lots of contents.Forum: Fixing WordPress
In reply to: Jetpack Subscribe Wdiget not workingCongrat!
Forum: Fixing WordPress
In reply to: Images appear squashed on Metaslider gallery on mobileIt is ok, lets just fix the problem.
Actually, I dont know what is the desired styles of the footer.
Now I see is white background and every thing aligned center: menus, sns icons, copyright.
Previously, it was black background and menus are aligned left and stacked vertically.Forum: Fixing WordPress
In reply to: Language of the themeCongrat!
Pls mark as resolved, thanks.Forum: Fixing WordPress
In reply to: Jetpack Subscribe Wdiget not workingPls put below css in ‘Additional CSS’ of Appearance -> Customize page.
#subscribe-email .required { display: block; }Forum: Fixing WordPress
In reply to: Language of the themeHow about add css like this:
.search-form .search-submit { right: unset; left: 0; }Forum: Fixing WordPress
In reply to: Language of the themeFor theme localization, language files are used (see https://developer.wordpress.org/apis/handbook/internationalization/localization/#translating-themes-and-plugins).
And in theme templates, translate functions are used, like__(),_e()or_x().I asked if the theme has one of those functions in “by” word.
In HitMag theme, there is it. Around line 64 of /hitmag/inc/tempalte-tags.php.$byline = sprintf( esc_html_x( 'by %s', 'post author', 'hitmag' ), '<span class="author vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '">' . esc_html( get_the_author() ) . '</a></span>' );Forum: Fixing WordPress
In reply to: Popups not centering on MobileHi.
Try this.@media (max-width: 767px) { .alertable { width: 90%; left: 5%; } }Forum: Fixing WordPress
In reply to: Language of the themeHi.
Is that translation ready in the theme?
Which theme is it?Forum: Fixing WordPress
In reply to: Jetpack Subscribe Wdiget not workingHi.
The email input field has .required class, and your css sets .required to bedisplay: none;.