r1k0
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to set line space/heightHey @satimis,
What theme are you currently using? So that we can assist you further.
Forum: Themes and Templates
In reply to: [Twenty Twenty-Three] Header width and space afterHey @rogbiz,
Apologize for the long wait.
For the header, it is currently using a row block (display: flex), which is why the contents of the header are pushed to the left side of the screen (justify-content: flex-start). To fix this you would need to change the row block to a group block and then disable the inner blocks use content width. Follow these steps to achieve this:
- Head over to Appearance > Editor > Patterns > Header.
- Select the header currently in use on your site.
- Click the list view, locate the row block, and on the right side of the screen. Change the row block to the group block.
- Under layout, disable the inner blocks use content width. Voila!!
The header should now use full width. The video below should assist you locate some of the options above:
For the second part, you are absolutely right. Padding is applied to a block, but the main culprit is an empty group block that has the padding. To fix this, you need to head over to the page and use list view to locate the empty group block. Remove it; this should fix the issue. If you don’t find it there, it’s most likely in the template for that page.
Hope this helps.
Cheers
Forum: Fixing WordPress
In reply to: Unable to access my wordpress website.Hey @abdulazizladan,
Accessing the site’s error logs will help you pinpoint the cause of the critical error. To do this, you need to access the site’s filesystem via an SFTP or FTP, and locate the
wp-config.phpfile. Add these lines of code to thewp-config.phpfile before the line/* That's all, stop editing! Happy blogging. */.define( 'WP_DEBUG_LOG', true );define( 'WP_DEBUG_DISPLAY', false );Also, change the
define( 'WP_DEBUG', false );todefine( 'WP_DEBUG', true );. This line should be above/* Add any custom values between this line and the "stop editing" line. */Trying to log in again to the admin dashboard, this should generate a debug.log file in your wp-content folder. This file should show you what’s causing the issue. If you are having trouble understanding the contents of this file. Kindly share it in your next response, and we will be able to guide you further.
This guide could help you gain clarity when debugging in WordPress: https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/.
Additionally, try to ask your hosting provider for support to help you access the error logs. They could also help you make changes to the
wp_config.phpfile, and in understanding the issue.Hope this helps.
Cheers
Forum: Themes and Templates
In reply to: [Twenty Twenty-Five] Single words formatting inside a paragraphHey @pierosparviero,
I hope you still require guidance with this topic.
Yes, this is completely possible in Twenty Twenty-Five. For colors, there’s an inbuilt feature. Highlight the word, click the dropdown arrow(see screenshot below for a visual guide), and select the highlight option. Pick a desired color and you’re done.
For changing other styles, it’s still possible, but you will need to add a bit of code. Head over to the page/post, click the three-dot button on the right side of the page. Select the code editor option, and locate the word/s that need to be different. Wrap the word in span element tags. Then use inline styles to add the styles you need. For example:
<span style="font-family:cardo; font-size:32px;">ultricies</span>Use the screenshots below to assist you in finding the code editor option.
These guides will give you more information about span and inline-CSS:
https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/span
https://www.freecodecamp.org/news/inline-style-in-html/
Hope this helps.
Cheers.Forum: Fixing WordPress
In reply to: Code Block ScrollHey @synsanken,
To make the code block scroll horizontally, the
overflow-x: scrollproperty should be able to achieve this.From a previous thread, I believe you are still using the Twenty Twenty-Five theme. To locate additional CSS:
- Head over to Appearance > Editor, then click the canvas preview on the right side of the screen.
- Click the half moon icon on the top right side of the page.
- Click the three dot buttons in the style tab and select the “Additional CSS” option.
These screenshots below should help get a visual on how to locate this option.
Canvas: https://snipboard.io/J2YRgv.jpg
Locate Additional CSS option: https://snipboard.io/ZNbTUf.jpgAdditionally, once you have added any custom CSS. The Additional CSS option should be available in the styles option in the editor. https://snipboard.io/neSo4i.jpg
Hope this helps.
Forum: Themes and Templates
In reply to: [Twenty Twenty-Five] Indenting ListsGlad to know that you were able to have the issue resolved.
Forum: Fixing WordPress
In reply to: no dashboardHello again,
I’m glad that you were able to get everything running again.
I found out why your local site wasn’t functional. I believe the correct home and siteurl value should have been: http://newlazenby.local
Best of luck
Forum: Fixing WordPress
In reply to: My custom gas bill form page not displaying correctly on mobileHi @danielbrooks,
Were you able to fix the issue?
I took a look at site and everything seems fine on my end. See screenshot below:
If you are still experiencing the issue, you could try clearing the browser cache and see if the layout breaks. Alternatively, you could try viewing the page on a different device/browser or use an incognito tab.
Give these a try a let us know how it goes.
Forum: Themes and Templates
In reply to: [Twenty Twenty-Five] Indenting ListsThank you for publishing it again. I took a look at your site, and these are a couple of things I have noticed:
- This issue seems to affect pages only and not posts. These are proof of that: (post: https://kennethrjones.com/assembly-language-the-human-friendly-side-of-machine-code/) (page https://kennethrjones.com/about/).
- I inspected the list on both types of pages, and for the post page, the list element has the
class="wp-list-block"attribute, but on pages, the list element doesn’t.
Additionally, I tried to replicate this on my end, but I was unable to achieve the same results. Here’s how it looks for me: https://snipboard.io/x5mDUl.jpg
I would love to see the block code from both types the pages template and the “Internet Commenter’s Style Guide” page. Please copy and share them in your next response. This should help me pinpoint the issue.
To access the template block code, follow these steps:
- Head over to the Appearance > Editor > Templates > Pages.
- Click the three dot button on the right side of the screen, the code editor option.
For the “Internet Commenter’s Style Guide” page, just head over to that page and follow the second point above. This screenshot should be able to help you locate the code editor: https://snipboard.io/N15S3L.jpg
Note:
Since these code snippets can be quite long, avoid using the code block to share the code (it clutters the thread). Instead, use a service like Pastebin and share the links here.Forum: Themes and Templates
In reply to: [Twenty Twenty-Five] Indenting ListsHey @synsanken,
It’s seems that the page linked no longer exist.
I tested this with Playground and the list block is indented by default. Check the screenshot below to see this: https://snipboard.io/5LCquQ.jpg
If this isn’t what happens on your end, make sure that a plugin or additional CSS isn’t overriding the theme’s styles for lists.
Forum: Fixing WordPress
In reply to: My website is not loadingHey @obejiarts,
Could you please provide more information on the issue you are facing?
What error message are you recieving?
Where is this occurring on the front-end or the back-end side of your site?
If you have a link to your site, kindly consider sharing it here. So that we could get a better look at the issue. If this is not possible, use a screenshot to show us the issue. This guide should help you know how to add screenshots on the forum: https://make.wordpress.org/support/handbook/appendix/adding-screenshots-on-the-forums/
Please provide answers to the questions above, so we can provide further assistance.
Forum: Themes and Templates
In reply to: [Twenty Twenty-Five] GalleryHey @baxter89,
This could be achieved by enabling the enlarge on click setting in image block styles. Follow these steps:
- In admin dashboard, go to Appearance > Editor > Styles > Blocks > Image.
- Scroll down and toggle the enlarge on click setting to enable it.
Please take note that this is an image-specific behavior and will apply to all the images in your site, and not specific to images in the gallery block only. If you choose to use this setting, and want to do something different when users click an image. You might need to change the behavior for every image individually that’s not in a gallery block.
Give this try and let me know how it goes.
Cheers.
- This reply was modified 4 weeks ago by r1k0.
Hey @nayan9718,
The white space would need to be adjusted with custom CSS, using the
gapproperty to be specific. Do you currently have a link to your live site? So that I can point you to the right selector. If not, you need to locate the necessary selector using the inspect tool. This guide here can help you learn how to use the inspect tool: https://www.wpbeginner.com/wp-tutorials/basics-of-inspect-element-with-your-wordpress-site/About the difference in height, this could be because the image you are currently using has a shorter height than the column container. Try experimenting with different images that have different heights. See screenshots below:
https://snipboard.io/qWRpXI.jpg
https://snipboard.io/d9cgOj.jpg
Hope this helps.
Best of luck
Forum: Fixing WordPress
In reply to: no dashboardHello again @unsureifwant,
Were you able to get the issue fixed on your local site?
Your production site still has an error. There is a fatal error on your live site related to the theme you are currently using. I believe it’s a custom theme. I also noticed that when trying to access the
wp-adminpage, it redirects to: https://localhost:3000/wp-admin/upgrade.php?_wp_http_referer=%2Fwp-admin%2FI would love to hear any progress that you have made and any other updates, so I might be able to assist you further.
Forum: Themes and Templates
In reply to: [Hello FSE Blog] read more /continue readingHello @epilepsywithally,
I would love to help. I took a look at a site, and I need a bit more information about the page that displays your post. This would typically be possible with the use of an excerpt block.
- Just to confirm, are you currently using the blog home template to display the posts?
- If yes, have you made any changes to it?
- Also, I tried to navigate to an individual post, but I was unable to. Links like: http://epilepsywithally.org/2025-09-01/the-fundamentals and http://epilepsywithally.org/the-fundamentals lead to a “page doesn’t exist” page. Do the created posts have their own pages?
- The link below shows a screenshot of the blog home template list view expanded. Could you also provide a similar screenshot? So that I can get a better understanding of the block’s structure.
https://snipboard.io/2bpnhu.jpg
This guide should be able to help you learn how to add screenshots in the forums: https://make.wordpress.org/support/handbook/appendix/adding-screenshots-on-the-forums/
Looking forward to your response.
- This reply was modified 4 weeks, 1 day ago by r1k0.