Questions tagged [drupal-themes]

This tag is for questions about themes hosted on Drupal.org. Don't use it to generally mean "this question is about a theme," when the question is about a theme's code, or when the question is already using a specific tag, such as "theming," "theme-template," or a tag specific for the used theme, such as "zen."

A theme is a "skin" that lets you change the layout and appearance of a Drupal site quickly and without programming.

For questions about the Drupal theming system, use .

166 questions
0
votes
2 answers

clean drupal theme for consumer website?

I am a drupal newbie and have been looking for drupal themes for my consumer focussed website. Here is my gripe. Most free drupal themes look like blog sites and most premium drupal themes look like corporate websites. Where do I go looking for a…
user393144
  • 1,575
  • 3
  • 14
  • 21
0
votes
1 answer

How to theme a Drupal 6 table to output array in rows and columns?

Iam using table themes.The below seen is my entire code for my ataempt at creating a table to show values in rows and columns. The code contains registration of my theme as well. The values come from 6 arrays seen inside the code namely fileId…
Angela Sim
  • 137
  • 1
  • 21
0
votes
1 answer

Drupal display suite template in module

I am using this function to register a tpl file in a module. /** * Implementation of hook_theme(). */ function frontpage_carousel_theme($existing) { return array( 'ds_1col' => array( 'arguments' => array(), …
Nealv
  • 6,856
  • 8
  • 58
  • 89
0
votes
1 answer

Display a Drupal page without the page template

Hello I am trying to generate a Drupal node which would be similar to a feed page generated by views module. I need to generate an xml feed, so I would not want to show the regular drupal template that is showed up on every node. I am trying to…
macha
  • 7,337
  • 19
  • 62
  • 84
0
votes
1 answer

Drupal multi-site and one theme: how to know which multi-site user is on?

I have drupal multisite installed and atm I have two sites. Both sites uses same theme, but there are few tiny differences between looks of the site (like logo and div/bar is different color). Or well I would that they would have those differences.…
user995317
  • 353
  • 6
  • 16
0
votes
1 answer

Drupal Theme Management

i was using drupal6 for my project. i am using two different themes for front end and backend. i managed my frontend page.tpl.php as per my requirements. But if i logged in with admin username & password, i am landing on http://mywebsite/user/1 ( my…
Viralk
  • 2,299
  • 4
  • 23
  • 27
0
votes
0 answers

In drupal, I want to align every product on same Line in bootstrap theme

I am developing an E-commerce site for that I am using Bootstrap theme & Accordion module. I have added taxonomy for all Categories with their respective sub categories. After that I have added the sample contents for them. So my issue is in my…
0
votes
1 answer

Drupal 7 - New template for other pages

I've tried using the page-node-2.tpl.php but it hasn't worked... Is there something I'm missing? I'm new to Drupal, but I think it might have something to do with not having a template.php in my themes directory?
PapaSmurf
  • 1,035
  • 2
  • 14
  • 26
0
votes
1 answer

I am using drupal opigno - did anyone know where I can found user menu template?

I am using opigno 3, and trying to delete some elements from user menu which it no configurable, I searched so much in the theme templates but I cant find which one have the user menu code. I am sure it is hard coded but I cant figure where to find…
0
votes
2 answers

Drupal 6/Pressflow - assign theme based on domain alias

I know modules like Mobile Tools can do what I want - but they don't work with Pressflow or Varnish. So, what I'm hoping to do is assign the sitewide theme based on the url used to access it. For instance: example.com <-- This gets the standard,…
Charles Bandes
  • 795
  • 8
  • 21
0
votes
1 answer

How to make sure region layout stays consistent over the website in Drupal

I've a weird issue in my Drupal 9 website where a couple of regions (subfeatures and footer) get rendered differently in different pages with no consistent behavior. They are loaded via the theme's default page.html.twig and should render inside the…
NKP
  • 79
  • 9
0
votes
1 answer

Drupal 7, General question about themeing

i've been having a nightmare trying to understand the Drupal way! I have an example here and if someone could show me the correct way to achieve my result I'm hoping it will help me open the door to understanding. So I'm trying to alter the Node…
Purplemonkey
  • 1,927
  • 3
  • 27
  • 39
0
votes
1 answer

drupal theme checkboxes

I'm trying to us the theme hook the style some checkboxes. I have used the form_alter hook to make some changes to the labels of each checkbox and now i would like to interact with the checkbox theme function to style the labels. In the form array…
dazz
  • 8,162
  • 9
  • 31
  • 41
0
votes
1 answer

How do I reduce the header height in Garland?

I want to get rid of the space below my header logo in Garland. I know the header is 80 pixels tall, but when I try changing that value it messes up other things. I want to reduce the dark colored section below my logo (which is empty) by 20 pixels,…
Aaron Kreider
  • 1,705
  • 5
  • 22
  • 44
0
votes
1 answer

Accessing deep values from array

I have a basic template node--some-name.html.twig, which I am trying to access a specific value from a child of the content variable. {% for item in content %} {{ kint(item) }} {% endfor %} which prints an expected value like so (trimmed for…
nublet
  • 1
  • 2