Adam Leone
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Stewart] sticky sidebar?Hey there,
It is possible with CSS.
Looking at your site, to check have you entered in some CSS into the Advance Custom CSS class field in the editor?
<aside class=".sticky-container { height: 100%; } .sticky-element { position: sticky; position: -webkit-sticky; top: 48px; } ">If yes, you would just need to add:
sticky-containerAnd nothing else.
The paremetres that then make that sticky, would look like this and be added via Appearance > Customize > Custom CSS.
.sticky-container { height: 100%; } .sticky-element { position: sticky; position: -webkit-sticky; top: 48px; }The top should work, but also these parameters when given a class:
{ position: fixed; width: 17%; }I hope this helps so far.
Forum: Themes and Templates
In reply to: [Gazette] Changing the Height of the FooterHello there,
To check, do you need help with https://esgholist.com/? The reason why I ask because this looks to be an almost empty site.
If it is, this will naturally move down the page as more content is added and the site grows.
Forum: Themes and Templates
In reply to: [Gazette] Linktext disappears after being clicked (a:active)Hmm, ok, so when returning to the page does it go back to it’s original colour?
Forum: Themes and Templates
In reply to: [Blask] Project types display in a portfolio viewGot it – you may want to experiment with a plugin: https://wordpress.org/plugins/search/category%20filter%20/ (an AJAX) based plugin that may be able to do that for you.
I hope this is useful.
Forum: Themes and Templates
In reply to: [Dara] Featured image problemHey there,
Ok, so you may need to regenerate the thumbnails and header images of the site.
This can be done using this plugin: https://wordpress.org/plugins/regenerate-thumbnails/
The size of the images can be found via Settings > Media.
Forum: Themes and Templates
In reply to: [Gazette] Linktext disappears after being clicked (a:active)Hey there,
I can see the link turns white when clicked, but then it appears back after the click.
When visiting the page, or going back – the link is still present there.
To check, are you experiencing the same behaviour?
Forum: Themes and Templates
In reply to: [Dara] Featured image problemHello there,
Many thanks, I can see the image looks uploaded ok and takes the same space as the demo there – are you saying that the image is getting cropped undesirably?
Forum: Themes and Templates
In reply to: [Blask] Project types display in a portfolio viewHey there,
It sounds like you need some kind of filter in place there. Are you looking to link to portfolio categories or tags specifically?
Forum: Themes and Templates
In reply to: [Dara] Featured image problemHey @taybar4 – do you have a link to the site so that we can take a look?
Forum: Themes and Templates
In reply to: [Vivre] Vivre home pageInteresting – when I do inspect element on https://siobhanmitchell.com/ – I can see there’s a row block in that header.
Is the same header seen in https://imgur.com/a/lnS2IuK (Header and footer template) the same header seen in the other templates?
Forum: Themes and Templates
In reply to: [Cyanotype] Change tag separatorHello there,
For the date, I believe this would be in the includes > template-tags.php – but you would need a developer to confirm that.
For the except you would need to modify the archive.php and index.php (I believe).
Hello there,
This CSS should move the header down to compensate for that plugin:
.site-logo { margin-bottom: 3em; margin-top: 2em; }This CSS should remove some of the white space under the social icons.
.social-links { margin-bottom: 0.5em; }Forum: Themes and Templates
In reply to: [Vivre] Vivre home pageHello there,
What exactly are you referring to about the menu or re-adding?
So a navigation block would be added to the site into the header.
If you add: /wp-admin/site-editor.php?postType=wp_template&postId=pub%2Fvivre%2F%2Fheader-footer-only to the end of URL of the site, do you go the header and footer template?
I can see the menu in there.. but it’s sitting outside of a row block.
Are you seeing something like this:
Forum: Themes and Templates
In reply to: [Cyanotype] Change tag separatorHello there,
To change that string from
,to|you would need a developer to make that edit to the template for you.Similarly, this would also need to happen with being able to add an excerpt to the posts page/blog page of the site.
Forum: Themes and Templates
In reply to: [Blask] changing social media iconsHello there,
To remove or change the icons, this can be done via Appearance > Menus > Social.
To change these styles you would need to add this code to Appearance > Customize > Additional CSS:
.social-links ul a:before { background: #fff; color: #000; }I hope this helps.