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.
I've been trying to alter the ubercart cart block so that the 'View Cart' and 'Checkout' links are located in the empty space in the top right of the cart block just to the right side of the title.
There is a content type in my website called singer and every singer may have name and some other information. there is another content type called songs and every song has two fields: (1) File (2) name. I also created an Entity Reference field in songs which links the song to a singer. obviously every singer may have any number of linked songs.
I listed the singers in a page and it must display every singer information and songs when the user click on any of the singers. this is my template.tpl.php
I am going through a Lynda.com tutorial on themeing. It involves creating a theme folder and .info page
at the following site path:
Public_html/sites/all/themes/bartiksub
This is also where the bartiksub.info page is
I see that the theme was created using bartik as a base theme in drupal, in fact I have established it as my default
The tutorial says to add the following code to bartik.info:
What is the correct mixin to use for nested elements with ZenGrids?
In my case I'm trying to create a responsive grid that stacks vertically. I have tried using @include zen-grid-flow-item($column-span, $parent-column-count) with the nested divs in conjunction with @media queries to account for different $parent-column-count values, but the widths generated are not correct because the last item in the row always spills below (e.g. if I specify 3 columns for the grid I only get two).