ikaring
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Formatting text in TwentyTwentyGood!
Forum: Fixing WordPress
In reply to: SVG not DisplayingWhy not use png image as is, instead of wrapped in svg with data uri?
Forum: Fixing WordPress
In reply to: Formatting text in TwentyTwentyYou might need more specific rule for this theme css, like so:
*, .entry-content p, .entry-content ol, .entry-content ul, .entry-content dl, .entry-content dt { font-family:”Verdana”, Sans-serif, monospace; font-size: 16px}These might not be enough, though. I did not check all styles.
Forum: Developing with WordPress
In reply to: Administrator lost it’s role on CPTHi.
Im not fully understand capability stuff, but according to the codex, args would be like this?'capability_type' => array( 'oglas', 'oglase' ), 'map_meta_cap' => trueIt saids capabilities array will be constructed by capability_type arg.
https://codex.wordpress.org/Function_Reference/register_post_type
Forum: Fixing WordPress
In reply to: white space over my page which follows while I scrollYour problem looks same as this thread:
https://support.google.com/adsense/thread/8954582?hl=enThere should be ad code somewhere in your theme, or might be added by javascript.
I dont know if they are the culprits but there are multiple adsbygoole.js loaded in the header.
It seems to be relating to ad codes, so check those setting of plugins/functions.php or maybe header.php.Forum: Fixing WordPress
In reply to: white space over my page which follows while I scrollThere still is a adsense div with class name “google-auto-placed”, inside nav.main-navigation.
Please check them.Forum: Fixing WordPress
In reply to: Images appear in Media library but aren’t working in posts and adsHi.
Pls try disabling eather/both of the following.1. Lazy Loading for images, in Jetpack > Settings > Performance tab
2. Enable site accelerator, same tab as above.Forum: Fixing WordPress
In reply to: Submenu hover disappears when you move to click on selectionIt seems some pages, like About, still have overlapping contents.
Pls try adding z-index on header block, like so:.elementor-3941 { z-index: 10; position: relative; }Since the submenu has transition of top value from 110% to 100%, there is a gap between hover area and submenu.
- This reply was modified 6 years, 5 months ago by ikaring.
Forum: Fixing WordPress
In reply to: Customizing My Nav Bar color in access Press LItHi.
Could you provide the page url, instead of image of code?
That would be much faster, I guess.Forum: Fixing WordPress
In reply to: I have a problem of null warning on my websiteHi.
You’d better set WP_DEBUG to be false in your wp-config.php, like so:
define('WP_DEBUG', false);Also ask the plugin author to fix the issue.
Forum: Fixing WordPress
In reply to: Unable to get rid of strange snippet imageIt seems Yoast SEO is responsible for the social tags.
Check out SEO -> Social page. There are Facebook and Twitter tabs for general settings.
Or you can set an image for each post.Forum: Fixing WordPress
In reply to: Copy 3 or more menus into oneYes, that’s what I meant.
In that case, ummm.
I dont know, maybe using custom walker, or javascript to arrange DOM?
Not clean, though.Forum: Fixing WordPress
In reply to: Page with WPForms plugin formats weirdlyHi.
Try putting this css to Appearance -> Customize -> Additional CSS.#primary #post-327 .entry-header, #primary #post-327 .entry-content { float: none; width: auto; }Forum: Fixing WordPress
In reply to: Copy 3 or more menus into oneHow about put each 6 menus with wp_nav_menu without items_wrap like so:
wp_nav_menu( array( 'items_wrap' => '%3$s' ) );
https://developer.wordpress.org/reference/functions/wp_nav_menu/#comment-204And wrap all the menus with ul.
Forum: Fixing WordPress
In reply to: Remove thumbnail in category pageI don’t know the codes you set, but this should hide it.
.category .news-snippet .featured-image { display: none; }