Christian Sabo
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Baskerville] Big Space Between Title And Post Body@tomkrehbiel
You can insert the CSS code via Customizer: from your Dashboard navigate to Appearance > Customizer > Additional CSS and paste it there. Be sure the button in the top right corner is set to «publish», not only «save».Forum: Themes and Templates
In reply to: [Baskerville] Remove Author Info In Post@kraaijennest You can insert the CSS code via Customizer: from your Dashboard navigate to Appearance > Customizer > Additional CSS and paste it there. Be sure the button in the top right corner is set to «publish», not only «save».
Forum: Themes and Templates
In reply to: [Baskerville] Few customizationHi @gabevasario ,
#1 is possible and easy; go to your Customizer > Additional CSS and insert the code
p.credits-left { display:none; } p.credits-right span { display:none; }Be sure the top button in the Customizer says “publish”, not only “save” and you’re done. (But to be honest, I think if you do so, it would be fair to keep at least some hint to Anders somewhere else in the site …)
#2 is possible, too – if you know which font you want to use instead; one possible replacement would be
div.blog-title { font-family:Helvetica, Arial, sans-serif; }You can use whatever font name you want, but keep in mind that your visitor’s PC must have this font installed in order to display the text the way you want it.
https://www.w3schools.com/cssref/css_websafe_fonts.asp#3 is easy again 😉
div.comments, #respond { display:none; }Hi Jessie @jessiespitfire ,
usually, you can choose/change the date format via backend (Instellingen > Algemeen > Datumnotatie).
Possible parameters for option #5 can be found at
in case you need them.Unfortunately, Baskerville does not use these standard settings in the masonry view. However, if you happen to use a child theme, you can fix that with a custom function:
add_action( 'the_time', 'my_own_datetimeformat'); function my_own_datetimeformat() { $text = the_date('j F Y'); if ( is_sticky() ) { $text = $text . " Uitgelicht"; } return $text; }It is a kind of “extended version” of the code in this post:
https://wordpress.org/support/topic/how-to-resolve-issues-with-date-format-requires-child-theme/Forum: Themes and Templates
In reply to: [Baskerville] Info box on postYes and no; to remove the box entirely, you can use the CSS code
div.post-meta-container { display:none; }But if you want to keep the links/buttons and make them look good, that’s not that trivial for someone whos calls himself a newbie 😉
Typically this would be solved using a child theme. In this child theme one would make modifications to the DIV structure which contains the post meta data, remove all unwanted elements and keep just the two links/buttons (and re-style them via CSS).
If you want to give it a try and inspect your website’s source code to find the DIV structure, hit cmd+alt+c on your Mac’s keyboard. Most probably, some web developer tools will open and you can start exploring the elements which build your page. When displaying the details, you can even see which CSS code is applied to each HTML element.
Forum: Themes and Templates
In reply to: [Baskerville] Remove Author Info In PostYou’re welcome!
Have you seen you can mark resolved support threads as “resolved”? 😉
Forum: Themes and Templates
In reply to: [Baskerville] Remove Author Info In PostTo remove the dates within each post, use
p.post-date { display:none; }To remove post date and comment bubble from the homepage, use
body.home a.post-date { display:none; }and
body.home a.post-comments { display:none; }It might be sufficient to leave out the “body.home” selector.
Forum: Themes and Templates
In reply to: [Baskerville] Header ImageIn the Customizer, take a look at the button in the top right corner.
Be sure it says “publish” and not “save”.Forum: Themes and Templates
In reply to: [Baskerville] Remove Author Info In PostHave you tried
div.post-author { display:none; }or
div.post-meta-container { display:none; }?
Forum: Alpha/Beta/RC
In reply to: block editor; wrong wording in 5.4-RC1ah, okay … thanks!
Forum: Themes and Templates
In reply to: [Baskerville] Removing secondary search barKatie, if you happen to use a child theme, you can try and remove line 98 from «header.php»:
<a class="search-toggle fright" href="#"></a>A different way is to remove the element via CSS.
Add the following code via customizer:a.search-toggle { display:none; }Forum: Plugins
In reply to: [Loginpetze] Suppress mails for logins from specific users or rolesI’ll need to think about how to achieve this.
Maybe with a filter …Forum: Plugins
In reply to: [Loginpetze] Add additional placeholdersHi @rolfhuiber,
version 1.3 is available from your dashboard; give it a try 😉
German translations will be available in 30 minutes.Forum: Themes and Templates
In reply to: [Baskerville] Header image too dark@filmcritic23 Hi Katherine, if you add the following code to you customizer (“Additional CSS”), this should do it:
.header .cover { background: rgba(29,29,29,0); }Forum: Plugins
In reply to: [Broken Link Checker] LINKEDIN links shows as brokenAhm, okay, just realized that we have linkedIn-URLs in our own projects too – and they ARE marked with “Status 999, unknown error” …