Andrzej
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Shoreditch] Spacing under header imagehttps://xcountrybike.com/6/ is still showing the same message!
Forum: Themes and Templates
In reply to: [Shoreditch] Spacing under header imageYou have a holding page (or maintenance page) on that link which says A New WordPress Site Coming Soon! This means that no one except you can see the WordPress site you are developing.
Forum: Themes and Templates
In reply to: [Shoreditch] Featured post image does not show on blog pageThank you very much. It worked perfectly!
Forum: Themes and Templates
In reply to: [Shoreditch] Featured post image does not show on blog pageOn the blog roll page – http://bit.ly/2maPIOE – there is a featured post slider that has two featured posts together with their featured images. The featured images in the featured posts slider are slightly darker than the ones on the actual posts. On the individual posts I have removed the grey overlay like:
/* Remove image overlay over featured image */ .entry-hero::before { background-color: transparent; }That makes the image brighter on the actual posts page, but still makes the images darker on the blog roll page featured posts slider.
As for the rest of the posts on the blog roll page, I have successfully made the featured images lighter by adding this to my child CSS theme:
/* On blog roll page remove dark background overlay from featured images */ @media screen and (min-width: 1020px) { .entry-hero::before, .site-content-wrapper .has-post-thumbnail .entry-header::before { display: none; } }What I am trying to achieve is to target the blog page (in my child theme) with the above CSS, so that the featured images in the slider have the same brightness as those on the individual posts.
Forum: Themes and Templates
In reply to: [Shoreditch] Featured post image does not show on blog pageI have solved part one of this. I’m afraid I had some CSS in the child theme that was causing the background image not to show.
If it is possible to remove the grey overlay with CSS on the blog page, I would be grateful for that information.
I watched Kathryn’s WordCamp video too – brilliant. I am sure Kathryn will have a more efficient way of doing this. I did manage to get it to align using this:
.post-1789 .entry-title::before { content: url("https://www.rightsideofthependulum.com/wp-content/uploads/2017/12/French-tech-logo.jpg"); vertical-align: -33%; line-height: 44px; }The vertical-align adjusted the image position before and the line-height helped with keeping the text lines an equal distance apart.
Forum: Themes and Templates
In reply to: [Dyad] Pages for different postsRecent Posts Widget With Thumbnails plugin by Martin Stehle. This will let you add posts from each category, as a widget, into a sidebar or footer area.
If you want the widgets in your pages instead,you should be able to achieve this with amr shortcode any widget by Anmari.
Forum: Themes and Templates
In reply to: [Dyad] Dyad 2 font and color themeMy apologies as I have just realised the poster is seeking a solution to move images from a WordPress.com blog, not from a self hosted one.
Forum: Themes and Templates
In reply to: [Dyad] Dyad 2 font and color themeImport & copy images from original site to new site.
The following works for me. Using an FTP programme like FileZilla, navigate to the old site, open public_html, open wp-content, open the uploads folder and select the folders containing the images. You will see folders numbered 2017, 2016, 2015 etc, depending on how many years your site has been up. Download those folders to your local computer. Using your WordPress dashboard, select the images you want and upload them to the media library on the new site.
Note. Depending on how your web space is configured, your site may be in a folder other than public_html.
Forum: Plugins
In reply to: [Ivory Search - WordPress Search Plugin] Change colour of close iconDone with pleasure.
Forum: Plugins
In reply to: [Ivory Search - WordPress Search Plugin] Change colour of close iconThank you very much. That worked perfectly.
Forum: Themes and Templates
In reply to: [Shoreditch] Default template + sidebar widget has black bandThat works very well. Additionally I did not need to use a media query with that.
Many thanks for your help.
Forum: Themes and Templates
In reply to: [Shoreditch] Default template + sidebar widget has black bandI have found out that this is the expected behaviour with Shoreditch. I have managed to remove this thick band with the following CSS:
@media screen and (min-width: 350px) { #secondary.widget-area { border-top: #ffffff !important; } }Correction: Footer areas use widgets and display fine.
I have upgraded 6 Shoreditch sites to 4.8. No problems so far. All of them use the full width template – no panel pages and no widget areas used on any of them. Footer areas used and display fine.