htmlpie
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Pen] Widget options for list viewHi,
Thanks, there are a number of options with the theme but you should probably check the Widgets Options plugin? It would allow you choose on which page(s) the widget should appear and where.
Forum: Themes and Templates
In reply to: [Pen] Can’t display my left sidebarHi,
You need to change the Layout settings. That sidebar is there, it is however set to display on the other side.
Forum: Themes and Templates
In reply to: [Pen] MastodonSuch as this one: https://ww.wp.xz.cn/plugins/social-icons-widget-by-wpzoom/
Forum: Themes and Templates
In reply to: [Pen] MastodonThat version does have one, and many more, but the one used here does not have that, it is the v4.7 and updating it is not an easy task.
Have you tried any plugin?Forum: Themes and Templates
In reply to: [Pen] Reduce margin between menubar and bodyHi there,
Glad to see 🙂
If you put that in the “Top” area, I think there would be no margin there? If that didn’t help, send the link through htmlpie.com/support, thanks.
Forum: Themes and Templates
In reply to: [Pen] Pen Theme creating conflict between two pluginsHi,
It must have been fixed with today’s update, thanks for reporting it.
Forum: Themes and Templates
In reply to: [Pen] Mobile Cart, Search and Account buttonsHi,
It is too much change for this theme! I’d look for another theme that is closer and if necessary customize it through a Child Theme.
Forum: Themes and Templates
In reply to: [Pen] Spacing between Menu items in the Navigation barHi,
You can do that with some CSS, try this:
#pen_navigation.pen_hover_1 ul#primary-menu > li { padding-left: 5px; padding-right: 5px; }It should be added through Appearance → Customize → Additional CSS.
Forum: Themes and Templates
In reply to: [Pen] MastodonHi,
The FontAwesome font that is used with this does not have an icon for it, so maybe in later versions.
In the meantime, you can use a plugin to add them, the header has two widget areas.
Forum: Themes and Templates
In reply to: [Pen] Disabling google fonts?Hi,
The documentation is a little old. You should use a plugin to disable Google Fonts. You can also do it through a Child Theme but it’s a little difficult.
Forum: Themes and Templates
In reply to: [Pen] Header imageSure, something like this:
@media only screen and (max-width:728px) { #pen_header .pen_header_main { height: 180px !important; } }Forum: Themes and Templates
In reply to: [Pen] Header imageIt’s almost there, you need to add an
!importantand that’s it.#pen_header .pen_header_main { min-height: calc( ( 243 * 100vw ) / 1024 ) !important; }Forum: Themes and Templates
In reply to: [Pen] Header imageRemove all of that and put this one in there instead:
#pen_header .pen_header_main { min-height: calc( ( 243 * 100vw ) / 1024 ); }Also, the pen-header.css seems to be still the edited version.
Forum: Themes and Templates
In reply to: [Pen] Header imageWhat you want can be done by adding multiple media queries and
min-heightfor different screen sizes. However, if that does not do it for you, please first revert all the CSS files back to their original as I’ve noticed there is some incorrect CSS in your edits as well – and they will be overridden with any update anyway.
Once they are the original files again, try the following code, perhaps this gets you closer to what you are expecting?#pen_header .pen_header_main { background-size: contain !important; }It should go to Appearance → Customize → Additional CSS.
Forum: Themes and Templates
In reply to: [Pen] Header imageIn that case, I can only suggest
background-position:center centerfor that, which would look like:#pen_header .pen_header_inner { background-position:center center; }I’m curious to see those other themes, how they have managed to have the whole entire image with varying widths, unless JavaScript was used to set the height based on the width and aspect ratio.