Adam Leone
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Colinear] How to expand logo to full-widthHello Michiel,
Many thanks for getting back to us.
I suspect this could be because of the Lazy Loading settings in Jetpack.
May I ask you to deactivate this as per: https://jetpack.com/support/lazy-images/.
Once deactivated, please also clear the site and browser cache.
This should hopefully clear up that fuzziness.
Many thanks.
Forum: Themes and Templates
In reply to: [Dyad] Read More button appears randomlyHello there,
For good measure – what’s the file that you edited specifically?
Can you confirm the article https://abcaeroespacial.com/index.php/2019/09/01/paseo-por-la-eei/ has an excerpt entered into the post settings?
The reason why I ask is that this can overwrite the default settings of theme. The default settings being to show post content, followed by the button.
Many thanks in advance.
Forum: Themes and Templates
In reply to: [Lodestar] lodestar main menu and sticky menu problemHello there,
Ah – I see exactly what you mean!
Please remove (previous code):
@media (max-width: 768px) { .menu-menu-1-container { height: 700px; } .main-navigation.toggled ul { display: block; overflow-y: scroll; position: relative; height: 100%; } }And replace with:
@media (max-width: 768px) { .main-navigation.toggled ul { display: block; overflow-y: scroll; position: relative; max-height: 685px; } }It looks like .menu-menu-1-container was unnecessary there.
Can you confirm that this has the desired effect please.
Many thanks in advance.
Forum: Themes and Templates
In reply to: [Scrawl] How to style buttons in the SCRAWL theme?Hello Roy,
You could also try
button, input[type="button"], input[type="reset"], input[type="submit"], #infinite-handle span { background: #ff0000; }Which should all buttons throughout the site.
Can you confirm if this works please?
Many thanks.
Forum: Themes and Templates
In reply to: [Shoreditch] Can I reduce height of menu bar?Hello there,
Happy to help you with this.
although there is still 1cm of white space below it, above the grey line separating the bottom of the menu from the rest of the page.
The CSS to add to change this is:
.site-header { padding-bottom: 1.5em; }1.5em is the default there, so this would be adjusted to suit your needs.
I hope this helps.
Forum: Themes and Templates
In reply to: [Lodestar] lodestar main menu and sticky menu problemHello there,
Many thanks for getting back on this.
It does work quite good…. but if you see the mobile view… it presents a big problem! the menu list is incomplete and cut off.. and no way to scroll. Why is that so? Some missing part of the CSS?
Ah I see what you mean, you might want to try adding this code as well.
@media (max-width: 768px) { .menu-menu-1-container { height: 700px; } .main-navigation.toggled ul { display: block; overflow-y: scroll; position: relative; height: 100%; } }I hope this helps.
Forum: Themes and Templates
In reply to: [Scrawl] How to style buttons in the SCRAWL theme?Hello Roy,
Many thanks for that extra information.
To change the background colour of a button, you might want to add the custom CSS:
/* Change button background */ input[type="submit"] { background: #ff0000; }With regards the font, you may need a plugin to import that font in from Google Fonts – these plugins here: https://wordpress.org/plugins/search/google+fonts/ may be of interest.
I hope this helps!
Forum: Themes and Templates
In reply to: [Lodestar] lodestar main menu and sticky menu problemHello there,
Many thanks for reaching out and providing a detailed explanation.
Just to check – is the goal to get a sticky header that works with mobile and desktop?
If yes, this may be possible with CSS. Are you able to deactivate any plugins that are causing the header to be sticky please.
This will help to create CSS that would work with the theme natively.
Many thanks in advance.
Hello there,
Happy to help you with this.
when I use a transparent image as my featured image, it comes out over a pink background. How do I eliminate this OR make it a white background?
You may wish to try this CSS here:
.portfolio-thumbnail a { background: #ffffff; }I hope this helps.
Hello there,
Many thanks for reaching out.
That doesn’t look like normal behaviour for that theme – I noticed via inspector tools that the font size is 0.92 rem, which is quite small, and it looks like the CSS is coming from another plugin on the site.
Are you able to tell me more about this particular site build please? (for instance, any custom development or CSS that may be added.)
Many thanks in advance.
Forum: Themes and Templates
In reply to: [Resonar] Featured image not working following upgrade to 5.6Hello there,
“This has now been fixed in r57711”
This is the name of the code deployment/update that relates to this bug.
If you’re not seeing this take effect, you should make sure that the theme is as up to date as it can be and also clear the browser cache. https://en.support.wordpress.com/browser-issues/#clearing-your-browser-cache
We hope this helps.
Forum: Themes and Templates
In reply to: [Spearhead] Center the site logoHello there,
Many thanks for reaching out.
I can’t see a logo uploaded to the site? Are you referring to the menu?
Many thanks in advance.
Forum: Themes and Templates
In reply to: [Colinear] Font storlek i widgetsHello there,
Many thanks for reaching out.
I see there’s a number of widgets in use there – is there a widget in particular you’re looking to change the font size of?
This information will help to determine the CSS required to make a change.
Many thanks in advance.
Forum: Themes and Templates
In reply to: [Rebalance] Posts overlap on homepage mobile versionHello there,
Many thanks for reaching out.
Is Jetpack installed on the site? If yes, are you able to check if Lazy Loading is activate via WP Admin > Jetpack > Settings > Performance please?
If yes, please deactivate this setting.
Many thanks in advance.
Forum: Themes and Templates
In reply to: [Spearhead] Center primary menu+social menu and post excerptHello there,
To center align the navigations, you might want to try this CSS:
/* Center align menus */ .site-header > nav { margin: 0 auto; }For the excerpt, you might want to try:
.home .entry-content { text-align: center; }I hope this helps.