Andrzej
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Dyad] Dyad 2 – No option to add tags to pages?Many thanks.
I have added the code via a code snippets plugin and it works perfectly!
Forum: Themes and Templates
In reply to: [Dyad] Cannot centre footer widgets if less than fourHi, many thanks.
I find the default entry content width in Dyad 2, too narrow. To override this, I have the following in my child theme:
/* Increase width of entry content area */
body:not(.has-post-thumbnail).is-singular .entry-inner {
max-width: 1000px !important;
}I commented this out to see if it would make the 2 widgets expand. It did not make the widgets expand.
I then stripped out the extra CSS in the child theme to make sure that anything else I had added was not causing the problem. Apart from Dyad 2 reverting to “out of the box” display, it did not make the widgets expand.
I then disabled all plugins apart from Jetpack. It did not make the widgets expand. I re-enabled the plugins.
I would have thought that the two widgets currently in the footer, have enough text in them to expand and centre in the footer, but they do not.
As a workaround, on this page – on this page , I have added some custom CSS (using WP Add Custom CSS, in the page editor) to centre the widgets. It works, but adds extra time and effort. This is the workaround CSS:
/* If using THREE instead of FOUR footer widgets, centre on wide screen and make responsive. Exact parameters depending on how many widgets less than four are on the page */
@media only screen and (min-width: 1360px) {
footer .widget-area {
max-width: 80% !important;
margin-left: 420px !important;
float: center;
}
}Looking through the support threads on this forum and then clicking onto various user sites, I have come across a few sites (most, however, use 4 footer widgets), that are using less than four footer widgets, and most of those footer widgets are also left aligned. However, I have also come across a small number of sites with less than four widgets – that are centre aligned. Looking at the footer CSS on those sites, it appears they are using variations of the code I have used above.
This leads me to think that they too have tried to get around this problem.
Hi @wfasa,
I’m sorry not to get back about this. You are right, that’s exactly what happened. Many thanks for your help.
Forum: Themes and Templates
In reply to: [Dyad] Why move from Dyad to Dyad 2?My pleasure.
Forum: Themes and Templates
In reply to: [Dyad] Why move from Dyad to Dyad 2?Forum: Themes and Templates
In reply to: [Dyad] Why move from Dyad to Dyad 2?Forum: Themes and Templates
In reply to: [Dyad] Why move from Dyad to Dyad 2?Forum: Themes and Templates
In reply to: [Dyad] Dyad 2 working without JetpackAs far as I can see Jetpack is GDPR compliant. See:
https://jetpack.com/2018/05/25/jetpack-gdpr/
I have many sites running, some with Dyad 2.
My comment forms in all themes now have the extra unchecked checkboxes mentioned at the URL above.
I also have the Jetpack Cookies & Consents widget activated, to further comply.
Forum: Themes and Templates
In reply to: [Karuna] Let responsive menu have expand indicatorMany thanks for your advice.
Forum: Themes and Templates
In reply to: [Karuna] Let responsive menu have expand indicatorMany thanks for your investigations.
That’s disappointing. Karuna is a nice theme with some interesting touches but lack of this feature in the responsive menu restricts it to small sites where child pages are not a big priority.
Does Automattic have a feature request service for their themes were I could request this?
Forum: Themes and Templates
In reply to: [Lodestar] Cannot add border radius to background image as logoMany thanks for the logo info and workaround suggestion.
Forum: Themes and Templates
In reply to: [Lodestar] H1 problem and page widthMany thanks for the clarification.
Forum: Themes and Templates
In reply to: [Lodestar] H1 problem and page widthBack to 1) which I still have not solved.
Since posting the support thread I have looked at other Lodestar sites that have the Home Page as a Static Page. None of them have a H1 entry header! The internal pages of the Lodestar sites I have looked at all have H1 entry headers. That’s a new one on me.
I have always understood that the first header used on any page (or post) should be the H2. Otherwise you get duplicate H1s which are not the best for SEO. Obviously I could start my Home Page with a H1 by choosing this header in the editor but I do not know if that is what I should be doing, or if there is a theme bug that is causing the H1 not to appear, or if this is by design. Incidentally, I switched themes to Twenty Sixteen and the H1 appeared on the Home Page.
Forum: Themes and Templates
In reply to: [Lodestar] H1 problem and page widthI have solved 2) with help of this thread:
https://en.forums.wordpress.com/topic/how-to-increase-the-with-of-the-page-content-and-title/
Forum: Themes and Templates
In reply to: [Shoreditch] Spacing under header imageI found this in another Shoreditch thread. I use it in all my Shoreditch sites and it works well for me.
/* Adjust space above entry header */ @media screen and (min-width: 1020px) { .hentry { padding-top: 2.5em } } @media screen and (min-width: 896px) { .hentry { padding-top: 2.5em; } }Your second question. If you use a featured image then the h1.entry-title will overlay on the featured image.
Your current header image will, however, display on top of your featured image and you may want to hide this either with css:
.header-image { display: none; }or instead of defining a header image in the WordPress customiser (which displays on every page), you can use a plugin like Unique Headers to display header images only on specific pages.