htmlpie
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Pen] Default JustificationThanks! Maybe you should try one of these plugins then:
https://ww.wp.xz.cn/plugins/classic-editor/
https://ww.wp.xz.cn/plugins/disable-gutenberg/If you prefer Gutenberg, you can share your experience here:
https://ww.wp.xz.cn/support/plugin/gutenberg/
They are constantly improving it based on user feedback.Hope it helps!
Forum: Themes and Templates
In reply to: [Pen] Default JustificationHi there,
Yes sure, follow these steps:
- Add a Paragraph block and make that change but do not add any text yet.
- Click the “⁞” button of the block and then click “Add to reusable blocks”.
- Add a name, such as “Paragraph – Center”, and save it.
Now you can add the same block through the “Reusable Blocks” tab every time you click that blue “+” button to add a new block.
Hope it helps! and if it did please rate the theme and the plugin too, thanks!
Forum: Themes and Templates
In reply to: [Pen] Hiding Button Content SettingsHi there,
You can hide it with some CSS, not recommended though:
#page .pen_options_overview_toggle { display: none; }It can be added through Appearance -> Customize -> Additional CSS.
Hope it helps!
Forum: Themes and Templates
In reply to: [Pen] Inactive links to sub-pages in the Menu widgetAwesome!
Please rate the theme and the plugin too, thanks!Forum: Themes and Templates
In reply to: [Pen] Dark ModeHi there,
No, it’s looking good now.
Forum: Themes and Templates
In reply to: [Pen] Dark ModeHi,
Checking your site, those buttons do not have any dark background right now, like in the screenshot, so it’s not really easy to know why they are so, but some CSS like this should help prevent them:
#main .pen_content_previous span, #main .pen_content_next span { background: transparent !important; }The text in those field is known as “placeholder”, and you can change its color like this:
#page input::-webkit-input-placeholder, #page select::-webkit-input-placeholder, #page textarea::-webkit-input-placeholder { color: #fff !important; }You can change the selector to “#content”, or “#pen_header”, and have multiple copies of this code with different colors for different parts. In order to find the ID or class name of the container of the text field: Do a right click on the text field, select “Inspect element” and check the HTML for a container with an ID or class name, like
<div id="something">, and use that as#somethingin the above CSS.Also, CSS can be added through Appearance -> Customize -> Additional CSS.
Hope it helps!
Forum: Themes and Templates
In reply to: [Pen] ImageHi there,
Those icons depend on the “Post Format” and alo whether the post is sticky or not, like the one in the screenshot.
Forum: Reviews
In reply to: [Pen] very goodThanks! 🙂
Forum: Themes and Templates
In reply to: [Pen] Inactive links to sub-pages in the Menu widgetHi there,
Try this CSS:
#page .widget.widget_nav_menu li { -webkit-transform-style: flat; -webkit-backface-visibility: visible; }It can be added through Appearance -> Customize -> Additional CSS.
It’ll be fixed in the next version, thanks for letting us know!
Forum: Themes and Templates
In reply to: [Pen] Buy themeForum: Themes and Templates
In reply to: [Pen] HighlightHi there,
Seems to be working. Maybe you should logout or use another browser as a visitor to see that plugin in action.
If you need to do it without any plugin with just CSS, here are two ways:
<span style="background:#ccff00;display:inline-block">Hello</span>Or, a little more complicated though:
<span class="custom-highlight">Hello</span>
Then you’d add such a CSS, preferably through Appearance -> Customize -> Additional CSS..custom-highlight { background: #ccff00; display: inline-block; }Hope it helps!
Forum: Themes and Templates
In reply to: [Pen] Buy themeIt’s totally fine.
If you have changed anything through Appearance -> Customize, you just need to apply them to the Child theme.
You can use “Pen Theme -> Customization Export\Import” in the left sidebar of the WP backend, or a plugin like this:
https://ww.wp.xz.cn/plugins/customizer-export-import/
First, you’d switch back to the Pen theme and “Export” your customization, then you’d switch to the Pen Child theme to “Import” them.Forum: Themes and Templates
In reply to: [Pen] Buy themeHi there,
Thank you for your support!
There’s no need to update your current theme. Also, the updates for the theme will be provided though wp.org on your WP backend like any other freeware theme.
Thanks again!
Forum: Themes and Templates
In reply to: [Pen] Image in page headerHi there,
Not quite sure if I understood correctly, try this CSS?
#pen_header .pen_header_inner .pen_header_main { background-position: center center !important; /* Just for the cars in that picture. */ background-size: auto !important; }It should be added through Appearance -> Customize -> Additional CSS.
Hope it helps!
Forum: Themes and Templates
In reply to: [Pen] Anomaly observed with the Simple Calendar pluginHi there,
The CSS of that plugin needs some tweaking:
.simcal-event-bubble { color: #333; }Please notify the plugin developers, I’m sure they want to know, thanks.
The CSS can be temporarily added through Appearance -> Customize -> Additional CSS.