Syahir Hakim
KeymasterKuala Lumpur, Malaysia
When not perched on my workspace, I tremendously enjoy hiking in the bushes and climbing mountains. They serve as much-needed refuges from the pretense of cities.
Forum Replies Created
-
Admin
Looks like Yoast SEO removes the option to disable breadcrumbs once the theme has declared support for that feature.
We’ll add a fix for this in the next theme update. In the mean time, add the following code to Customizer > Additional CSS to hide the breadcrumbs:
.breadcrumb-yoast { display: none; }Admin
In reply to: Appearance -> Customize > widget > footer > add *** RTL problem
April 28, 2020 at 2:33 pm #51361That section is not controlled by Graphene, but by WordPress itself. Try switching to the default TwentyTwenty theme and see if the issue persists.
Admin
Thanks for the feedback. We’ll include a fix for this issue in the next theme update.
Admin
Graphene only natively supports Breadcrumb NavXT plugin at the moment. In the next theme update, we’ll add native support for Yoast SEO breadcrumbs.
Admin
The latest changelog is always included with the theme. You can view it here:
https://www.teawea.com/wp-content/themes/graphene/changelog.txtWe have also updated the changelog on our website.
Admin
Thanks for the feedback. Graphene did change the editor width to follow the actual content width. However, one of the more recent WordPress updates changed the block editor wrapper class so it’s no longer applied.
We’ll include a fix for this in the next theme update.
Admin
The easiest way would be to just hide the title line using the following CSS code:
@media (max-width: 767px) { .header_title { display: none !important; } }Admin
Using the code that I provided as a sample, to limit any additional CSS to a specific page, you’ll have to prefix the CSS code with the page-specific CSS class. This class is highlighted in red below.
<span style="color:red">.page-id-19</span> #content, <span style="color:red">.page-id-19</span> .entry-content { padding-top: 0; }To apply specific CSS codes only on specific pages, follow the example above and replace the ID number (in the case above it’s “19”) with the ID number of specific page in question.
To easily determine what is the ID number for any pages, you may use the following plugin: https://wordpress.org/plugins/reveal-ids-for-wp-admin-25/
On the specific page that you mentioned above (family-therapy), the following code will expand the main image through the surrounding white space:
.page-id-22 .wp-block-cover { margin: 0 -15px 1.5em -15px; width: auto; }Admin
Graphene uses Bootstrap as the grid system, so the mobile breakpoints follow the same as Bootstrap. In the case of mobile devices, it’s 768px. See Bootstrap’s documentation for the full list of responsive breakpoints.
Admin
Use the following code in Additional CSS:
.page-id-19 #content, .page-id-19 .entry-content { padding-top: 0; }
