Alvind
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [GeneratePress] Import starter siteHi there,
The Site Library is a premium feature, so could you please open a topic on the Premium Support forum instead? This is because WordPress does not allow us to provide support for paid plugins here; it’s a WordPress rule.
Forum: Themes and Templates
In reply to: [GeneratePress] Image outfocusGlad to hear you’ve found a solution!
Hi there,
We haven’t received any other reports regarding the issue you’re experiencing, so it may be caused by a conflict with another plugin. To debug this, could you try deactivating all plugins except for GenerateBlocks and see if the issue still occurs?
Forum: Themes and Templates
In reply to: [GeneratePress] Customize distortedYou can use this plugin:
Forum: Themes and Templates
In reply to: [GeneratePress] Customize distortedHi there,
For now, one solution is to roll back to the previous version of WordPress, as version 6.7 might have some issues with the Customizer. This will give us some time to test and replicate the problem.
Forum: Themes and Templates
In reply to: [GeneratePress] Aria LabelNo problem 🙂
Forum: Themes and Templates
In reply to: [GeneratePress] Aria LabelHi there,
Unfortunately, there is no way to add that at the moment. However, there may be a filter to accomplish this in an upcoming release.
Forum: Themes and Templates
In reply to: [GeneratePress] Regarding pageinsightsHi there,
- Which elements that being flagged for this?
- Do you have any image optimization plugins installed on your site? There was a similar issue before where the optimization plugin altered the output of the image HTML, causing the alt tag to be stripped.
In your Customiser > Additional CSS you have this CSS:
/* no top bar on mobile devices */
      @media (max-width: 768px) {
        .top-bar {
          display: none;
        }
      }You can remove that, as it hides the top bar on mobile.
Hi there,
The menu is there, but it is not visible because its color is white, which matches the background. You can change the menu text color under Customize > Colors > Primary Navigation > Navigation Text.
Forum: Themes and Templates
In reply to: [GeneratePress] Post imagesHi there,
You can add this CSS that will apply to the mobile image size:
@media (max-width: 768px) {
.single-post .entry-content img {
width: 100%;
height: 200px;
object-fit: cover;
}
}Forum: Themes and Templates
In reply to: [GeneratePress] How to set left and right aligned search boxYou’re welcome!
Forum: Themes and Templates
In reply to: [GeneratePress] How to set left and right aligned search boxTry adding this CSS:
input[type="search"] {
padding: 0 15px;
}Forum: Themes and Templates
In reply to: [GeneratePress] How to set left and right aligned search boxHi there,
It looks like you’ve managed to resolve the width and alignment issue since it’s already centered in your layout. As for the search field sizing, try adjusting the Typography size in the Search block settings, as the field height corresponds to the text size.
Forum: Themes and Templates
In reply to: [GeneratePress] ExcerptIn that case, you’ll need GP Premium because you’ll need to use the Loop Template element to customize the blog card layout.