Miha Omejc
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Twenty Twenty] reduce space between blocks@juliahsun I can’t find
.m0
on any block on your frontpage. On what block do you want to reduce margin?Forum: Themes and Templates
In reply to: [Twenty Twenty] reduce space between blocks@rollout try this: Change Additional CSS in customizer to:
.m0 { margin-top: 0!important; margin-bottom: 0!important; }
This should do the trick.
Forum: Themes and Templates
In reply to: [Twenty Twenty] reduce space between blocksIn the Customizer (Appearance -> Customize), under Additional CSS write this code:
.m0 {margin-top:0; margin-bottom:0}
Then go to your block that you want to eliminate top and bottom spacing. Under Advanced panel on the right side enter in Additional CSS Class(es) input:m0
.If there isn’t any change try to put
m0
class in neighbouring block up or down.When space is eliminated, you can use Spacer block to make custom spacing.
Forum: Fixing WordPress
In reply to: Highlight parent menu item when open post with custom permalinkI don’t know if I understand you correctly, but if you assigned Blog posts page under Settings -> Reading, then
<li>
tag will have.current_page_parent
class applied. Would this help you?Forum: Fixing WordPress
In reply to: Scaled Image QuestionHello Michael,
your image is scaled just fine:
https://imgur.com/a/3F4C4G6Forum: Fixing WordPress
In reply to: Can’t edit slug until post is savedIf the post isn’t saved to the database yet, then it doesn’t have a “slug” available to be edited.
Creation of the slug for the permalink only happens when the post is saved for the first time, because the slug needs to be unique so it has to check against other slugs already in the database.
Instead of just publishing a post, you could try Save Draft -> edit your slug -> Publish post.
Forum: Fixing WordPress
In reply to: How do I get my theme to display price and headingYou could add this css to your theme:
@media screen and (min-width: 768px) { .site-main ul.products li.product .g-product-title, .smm-mega-menu ul.products li.product .button, .smm-mega-menu ul.products li.product .g-product-title { position: relative; opacity: 1; } .site-main ul.products li.product .button { display: none; } }
Forum: Fixing WordPress
In reply to: The uploaded file could not be moved to wp-content/uploadsDid you try this: this?
Forum: Fixing WordPress
In reply to: category not showing up on mobileYour sub-categories shows on mobile just fine. Categories menu is located under Show sidebar toggle.
Forum: Themes and Templates
In reply to: Increase the homepage heighSimply go to Appearance ? Widgets in your WordPress admin area. Next drag & drop the Text widget to the appropriate widget area and paste your Google AdSense code in there.
Forum: Themes and Templates
In reply to: Increase the homepage heigh-Admin Panel-, -Settings-, -Reading-,
‘Blog pages show at most’ [insert your number of posts here] postsForum: Fixing WordPress
In reply to: My Background Not showing UpAdd space (probably in your header template) after body tag.
Instead
<bodyclass="home page page-id-8 page-template-default custom-background">
should be
<body class="home page page-id-8 page-template-default custom-background">
Forum: Fixing WordPress
In reply to: Hide tagsThey are hidden not gone.
Forum: Fixing WordPress
In reply to: Hide tagsTry this:
.tag { display: none; }
Forum: Fixing WordPress
In reply to: Redirect linksI don’t know if I understand you correctly, but I would suggest you to install a Simple URLs plugin.