htmlpie
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Pen] Header imageThe main files should never be edited, you should have only added that piece of CSS code, through Appearance → Customize → Additional CSS.
As for the image, since you are using the “Wide” layout the image needs to stretch to the entire width of the screen, or browser window, and that is causing the problem. I’d suggest the “Boxed” layout which has a fixed width of 1200px on desktop, and then you can adjust the
min-heightfor just the mobile version.Forum: Themes and Templates
In reply to: [Pen] Change link of logo sub siteHi there,
That URL gets added with the
home_url()function, so you should be able to modify the home URL throughSettings → General, on the sub-directory site, otherwise, I would either override thepen_html_logo()from /pen/include/html.php with a Child theme, or just override thehome_url(), I think that would be better.Forum: Themes and Templates
In reply to: [Pen] Update themeI’m sorry, this is not quiet clear, do you mean it is all good now?
Forum: Themes and Templates
In reply to: [Pen] Header imageIt is possible, if you change the
min-heightbased on the screen size (which means multiple media queries) or chose a fixed-width layout and only adjust themin-heightfor mobile and possibly tablet to make sure it fits well (which means two media queries per device), you can find the breakpoints at /pen/assets/css/pen-header.css, hope it helps!Forum: Themes and Templates
In reply to: [Pen] Header imageHi there,
I’d either change the image to have a different aspect ratio, or add some CSS to set a
min-heightfor the header:@media only screen and (min-width:728px) { #pen_header .pen_header_inner { min-height: 400px; } } /* Mobile. */ @media only screen and (max-width:728px) { #pen_header .pen_header_inner { min-height: 500px; } }You can add the CSS through Appearance → Customize → Additional CSS.
Forum: Themes and Templates
In reply to: [Pen] Update themeIt appears to be fine.
Forum: Themes and Templates
In reply to: [Pen] Sticky SidebarIt was emailed to you, several months ago. It is now included in the most recent update.
Forum: Themes and Templates
In reply to: [Pen] Update themeHi there,
It is available for download now. It was supposed to include some new features regarding the Block Editor but things changed and it now only includes the sticky sidebar update and some minor improvements.
Forum: Themes and Templates
In reply to: [Pen] Update themeHi there,
Sure, it’ll be updated soon with some new features.
Forum: Themes and Templates
In reply to: [Pen] Alphabetizing posts with jQmasonryHi there,
That methods requires a lot of CSS & JS considerations. I’d check some plugins first, have you done that already?
https://ww.wp.xz.cn/plugins/tags/a-to-z/
https://ww.wp.xz.cn/plugins/tags/alphabetical/Forum: Reviews
In reply to: [Pen] Solved a BIG Problem!Thanks! 🙂
Forum: Themes and Templates
In reply to: [Pen] widget width setting in pixelsHi,
I don’t think that would be a good idea, not for the smaller screens at least.
If you want to give it a try anyway, check the
pen-layout.css, you need to update all thewidth,left, andright` values.Forum: Themes and Templates
In reply to: [Pen] Sticky SidebarHi,
I’ve sent you a possible fix, please check it out and let me know, thanks.
Forum: Themes and Templates
In reply to: [Pen] Can’t scrollHi,
Would you please send us your email address through htmlpie.com/support?
I need to make sure this problem has been fixed. I could not really reproduce that, but I’ve made it impossible for the sidebars to go beyond the footer.
Thanks.Forum: Themes and Templates
In reply to: [Pen] widget width setting in pixelsHi,
Not sure how pixels could help, I’d rather set some
min-width&max-widthfor the page.@media only screen and (min-width:728px) { #page .pen_container { max-width: 1920px; min-width: 1140px; } }