ikaring
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Images appear squashed on Metaslider gallery on mobileYour css lacks something.
Please compare, very carefully, your css with my css.Forum: Fixing WordPress
In reply to: Exclude categorySet minus id num for excluding, like so.
$query->set( 'cat', '-11,-12,-13' );Forum: Fixing WordPress
In reply to: Images appear squashed on Metaslider gallery on mobileCongrat!
Please mark it as resolved.BTW, nice pics!
Forum: Fixing WordPress
In reply to: Images appear squashed on Metaslider gallery on mobileHi.
The css you pasted lacks the closing brace for @media.
That might affect latter styles for footer?Forum: Fixing WordPress
In reply to: Translation using lang html atributtes?Hi.
What is the purpose of this approach, translation or accessibility?Above example just display 3 paragraphs, I guess.
Forum: Fixing WordPress
In reply to: Autocomplete Tag SafariHi.
Which WP version do you use?
In latest 5.4.1, ui-autocomplete is not used in tag section.Is it a plugin feature?
Youtube video data(JSON) can be fetched with above API, so you can call the API on submitting the search button, I guess.
These pages better describes usage.
https://developers.google.com/youtube/v3/guides/implementation/search
https://developers.google.com/youtube/v3/code_samples
- This reply was modified 5 years, 11 months ago by ikaring. Reason: Add ref links
Forum: Fixing WordPress
In reply to: Part of a paragraph goes above imageHi.
Since you set the image to align right, it has class “alignright”, that pulls it right in wide screen. In narrower screen devices, it just cover the width.To solve it, add a special class name to the image and set it not float in mobile device with css media query, like so:
@media (max-width: 781px) { .alignright.special-class-you-name-it { float: none; margin-left: 0; } }Forum: Fixing WordPress
In reply to: Images appear squashed on Metaslider gallery on mobileUmm, I have never encountered that situation, there is nothing to say but to provide a reference page url:
https://mhthemes.com/support/knb/theme-customizer-not-working/
If that persists, please make another thread for help.
Cheers!Forum: Fixing WordPress
In reply to: Images appear squashed on Metaslider gallery on mobileWell, no. I dont think they are connected.
You maybe forgot to press Publish button? I dont know.Forum: Fixing WordPress
In reply to: Images appear squashed on Metaslider gallery on mobileAh, I have not checked them.
That is because there is a rule like this.
@media (max-width: 991px) { .nav-bar .module-group .module { display: block; float: none; width: 100%; } }You need to override this rule for search box only, like so:
@media (max-width: 991px) { .nav-bar .module-group .module.search-widget-handle { display: none; } }Forum: Fixing WordPress
In reply to: Images appear squashed on Metaslider gallery on mobileSorry. wrong thread
- This reply was modified 5 years, 11 months ago by ikaring. Reason: Pasted on wrong thread, sorry
Forum: Fixing WordPress
In reply to: Images appear squashed on Metaslider gallery on mobileOK.
Pls try delete a space before ‘display’.
That seems to be the culprit. I dont know what it is, though.Good luck.
Forum: Fixing WordPress
In reply to: Mouse Hover Colors – Going Crazy…Hi.
As to dropdown menu, there are two rules as below. Hover state is attached to li instead of a tag.
This css is loaded with admin-ajax.php?action=themestek_theme_css. Parent theme?
It is necessary to override them with higher priority rule, like adding#mastheadprior to each rules.@media (min-width: 1200px) { .ts-dmenu-active-color-custom #site-header-menu #site-navigation div.nav-menu > ul > li li:hover > a { color: #fff; } }@media (min-width: 1200px) { #site-header-menu #site-navigation div.nav-menu > ul ul li:hover > a { background-color: #ffffff; color: #fff !important; } }With browser’s developer tools, you can easily find css applied to a specific element.
Forum: Fixing WordPress
In reply to: Having problems to view imagesHi.
Pls check if files/directories exists in /nueva/wp-content/uploads directory, with ftp/sftp or file browser of your server.