ikaring
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Space between gallery imagesLooks good. Cheers!👍🏻
Forum: Fixing WordPress
In reply to: Space between gallery imagesHi.
Here is the css only for this gallery:.galleryid-16403 { text-align: center; } .galleryid-16403 .gellery-item { width: auto; padding: 0 1% 2%; //set as you want }Forum: Fixing WordPress
In reply to: audio player caption color👍
Forum: Fixing WordPress
In reply to: audio player caption colorHi.
If it is Twenty Seventeen, the selector will be.wp-block-audio figcaption, that sets text color.Forum: Fixing WordPress
In reply to: Delete theme unactiveIn Appearance -> Themes page, hover on a thumbnail and click “Theme Details”.
Then click “delete” link on right bottom.Forum: Fixing WordPress
In reply to: White Space Between Embedded VideosHi.
It seems your videos are wrapped with p tag with class.responsive-video-wrap.
What if just add videos by YouTube embed blocks.Forum: Fixing WordPress
In reply to: Can’t get rid of ugly spacesHi.
In that situation, I would restrict css only for sibling of excerpt.
This wont affect margins for pages without excerpt.
Replace all additional css with:.secondline-themes-blog-excerpt + .single-player-container-secondline.embed-player-single-slt { margin-top: 0; } @media only screen and (max-width: 767px), all { body .secondline-themes-blog-excerpt + .single-player-container-secondline.embed-player-single-slt { margin-top: 0; } }Forum: Fixing WordPress
In reply to: Can’t get rid of ugly spacesHere is the one.
@media only screen and (max-width: 767px), all { body .single-player-container-secondline.embed-player-single-slt { margin-top: 0; } }You can check which css rule is affecting the view with developer tools of browser.
Forum: Fixing WordPress
In reply to: Can’t get rid of ugly spacesHi @youdoyou.
There is following rule in your theme’s style.css:.single-player-container-secondline.embed-player-single-slt { margin-top: 100px; }Add “Additional CSS” in Appearance -> Customize section, like so:
.single-player-container-secondline.embed-player-single-slt { margin-top: 0; }or whatever value.
Forum: Fixing WordPress
In reply to: Video ProblemHi.
The black one does not have controls and poster attributes on video tag.
Pls check the block settings panel.Forum: Fixing WordPress
In reply to: Posts Page – Category filter not workingHi.
Have you checked if there is error.
Change WP_DEBUG to true, in wp-config.php.
define('WP_DEBUG', true);Other things I would do is to re-install WP core, and twentysixteen theme.
Forum: Fixing WordPress
In reply to: Alignment Justify not availableHi. That is because browser supports are limited, I guess.
Forum: Fixing WordPress
In reply to: Something wrong with my wordpress siteAdmin page url should be http://www.hytteplanmila.no/wp-admin/
Not http://www.hytteplanmila.no/adminForum: Fixing WordPress
In reply to: Menu issuesThere is a ‘Client Portal’ menu in your blog pages.
It seems you have multiple menus.
The menus in home page have class thrv_*** or tve-***.
Isn’t it something to do with Thrive Visual Editor Plugins?
Pls check the plugin setting or widget.Forum: Developing with WordPress
In reply to: Issue with Pretty Permalinks and the “Post Page” settingOK.
Then clone page.php as page-blog.php and replace whole loop section with above code.
If you intend to display not only blog category posts, remove ‘cat’ arg, and you will get maximum 10 post titles, I hope.