Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
On Drupal 10, I installed the Bootstrap 5 Barrio theme.
When an article is selected, the un-selected menu buttons are difficult to read in the View Edit Delete Revisions toolbar. Only the by default selected View button is OK.
How can I fix this in the themes style.css file or is there an other solution?
In one of our designs, there are boxed with 2 sentences like this. My developer said it is hard to achieve this design unless it is 1 line sentence. How do we overcome this issue and achieve this design? is it impossible?
I've got an old Drupal 8 Theme that the developer basically got it to where it would operate, and has since abandoned it. A working Drupal version of this theme is desired, so I'm attempting to "port" it to work with Drupal 9 and 10. As a fast "bring y'all up to speed", here's a recap of what I've done so far:
I want to have a different HTML tag rendering for my content fields. Currently I'm using views-view-fields--[myview_name].html.twig and I can access the fields using {{ fields.field_name.content }}. But {{ fields.field_name.content }} is actually a HTML rendered field.
How do I get the raw data from the view? Something like {{ node.field_name.value }} from the views-view ?