tangermaroc
Forum Replies Created
-
hello dear Dion
many many thanks for the quick reply with the sharing of all your insights.
this helps alot here.
again – many thanks+
WordPress rocks and i am pretty sure that it has friends all over the planet
and gets more and more each dayWordPress rocks
Forum: Fixing WordPress
In reply to: processes of automatic-update: how to achieve thishello dear Joy
many thanks for the quick reply. Great to hear this good news.
one last quwestion. Do i need to have special server conditions that are necessarily preliminaries for running these automatic updates.
in other words: do i have to have certain server-configurations to be able to run all these auto-updates.
Note: i am on a root-server. And my friend adminstrates the server. So we need to know which setup is necessary.
I will read the documentation that you linked above.
again many many thanks for your help here
keep up the great work – i am pretty sure that wordpress gets more and more friends on the planet. Day by day. WordPress rocks
regards TangerMaroc
Hello dear Milos,
many thanks for the reply with the great rundown on the Workflow. This is just awesome. Your support here is so outstanding and great.
many thanks – keep up the great work
it rocks and i am pretty sure that i will do lots of projects with your
awesome and featurerich coBlocksKind Regards, Tangermaroc
- This reply was modified 3 years, 12 months ago by tangermaroc.
Forum: Themes and Templates
In reply to: [Twenty Twenty] does twenty-twenty use Google-Font!?good day dear Patrick Bogdan,
many thanks for the answer with this great information. i am very very glad to hear that.
Wordpress is one of the coolest things on earth
i am so glad that i have found WP.keep up the great project – it rocks ??
Forum: Themes and Templates
In reply to: [Twenty Twenty] Use full width of page for text on MOBILEHi Florian,
first of all; many thanks for adressing your issues here. Thank you for posting.
you wrote:
There is lots of space on the left and on the right and I would like use the whole width of the page to display the content?
well – regarding the full-width of the theme-twenty-twenty:
i guess the simplest way for turning the theme to full width (itself) would probably be adding the following into
Appearance->Customize->Additional CSS when logged into your admin dashboard
.entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) { max-width: 90%; }
You can adjust the 90% value to your liking depending upon how wide you’d like to have the content.
we have got several options:
– Child Themes? Do you know much about CSS?and besides this: we re able to do something with
– Dashboard>Appearance>Customiser>Additional CSS.here is the codex link to understand how it works with examples: body class
for custom category template, but genearlly spoken the code – we can apply here could be: (note: we need to add this code to functions.php of a child theme)That code will add the class “template-full-width” to all pages
add_filter( 'body_class', 'custom_class' ); function custom_class( $classes ) { if ( is_page () ) { $classes[] = 'template-full-width'; } return $classes; }
but besides this: there is also this CSS solution more simple:
.entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) { max-width: 120rem; width: calc(100% - 4rem); }
and having said this – the simplest way would probably be adding the following into the following option:
Appearance->Customize->Additional CSS when logged into your admin dashboard
.entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) { max-width: 90%; }
here we can adjust the 90% value to your liking depending upon how wide you’d like to have the content.
It would depend on the page that you’re wanting to have the full template on. If it is across the entire site, then most likely not recommended because of how left/right aligned elements are placed in the content area.
That said, the following CSS applies a full width to a cover template
.post-template-template-cover #site-content .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) { max-width: 100%; }
You could target a specific post by finding the post ID and adding it onto the end of the .post-template-template-cover class
.post-template-template-cover.postid-1785 #site-content .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) { max-width: 100%; }
dear Florian, i hope that helps you
i look forward to hear from you
regards Tanger
- This reply was modified 4 years ago by tangermaroc.