This forum is for assistance with theme development.

Please give me the simple version of how I upload a theme

I made some modifications on the goofy theme, and would like to contribute the theme.

I received an email informing me that CVS account request has been approved. The email included several links about making contributions, but I can not seem to find the most basic information: where exactly do I go to upload the theme, and fill out a description etc.

I am not interested in a huge ordeal, I don't have time to read a lot of irrelevant matterial.

multiple node types?

Hello,

I have yet another theming issue that I cannot find an answer to. Hopefully someone can help.

I have on my site a Blog page. It is a list of blog articles. Technically a series of nodes on one page. The all have the same h2 styling. It is a standard page that is not special in any way.

I have another page on my site called Portfolio. It too is a series of nodes that display my portfolio images. It is a group of nodes based on taxanomy. This page looks just like my Blog page. Including the same h2 styling.

So all pages like this that are a list of nodes have the same styling. But I need to have different h2 styling for each page. Is there a way to make this possible. I am not sure how it might be accomplished. I guess I just need the output to be different so I can use CSS to change them. Like maybe my blog page looks like this:

<div class="node">
  	<h2><a href="/node/18" title="TEST 2">TEST 1</a></h2>
	<div class="info"></div>
	<div class="content">
	    <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec risus.</p>
        </div>
</div>

And my portfolio page looks like this:

TEST 2

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec risus.

Broken blocks - theme, css, or what?

screenshot

ok this has been driving me nuts for ages so i'll try to explain here. When you look at the above screenshot, the search box is cut in half. No matter what block is on top, it cuts in in half on some pages, but not others. I've tried all sorts of things on the css still no luck. I am modifying the 'combustion' theme. (btw, it is fine in Firefox but the problem happens in IE.)

Has any one else ever encountered this? or have any advice?

Change list order

Hi !

Could somebody tell me how to reverse the order this list is displayed ?

Now, with this code, the flexinodes are displayed from oldest to newest, i'd like them to be displayed by date of creation with the latest first.

Multiflex Theme

Hello:

I'm trying modify this module (http://drupal.org/project/multiflex) but i don't understand all the css code, i want to change the dimenssions, i would like 800 px, not 770 (by default), and i would like have a content block (central block) whose "width" be 500px.

Sorry for my english.

Regards

Marmota

Contrib: Customizing theme to make forum look more like a "regular forum"

I recall a thread with several Drupallers asking for the forum to look more like a "regular forum"

I spent a bit of time customizing my theme towards such a goal, so here's my contribution- it should work with most themes (modify as necessary)

replace your theme's comment.tpl.php with this

<div class="comment<?php if ($comment->status == COMMENT_NOT_PUBLISHED) print ' comment-unpublished'; ?>">
  <h3><?php print $title; ?></h3>
  <p class="submitted"><?php print $submitted; ?> <?php if ($new != '') { ?><span class="new"><?php print $new; ?></span><?php } ?></p>
<div class="usericon"><?php if ($picture) {print $picture; } ?></div>
 <div class="comment-body"><?php print $content; ?></div>
  <p class="links">&raquo; <?php print $links; ?></p>
</div>

then add this to the theme's style.css


.comment .submitted {margin-top: -4px; font-size: .8em;}
.comment .links {text-align: right; font-size: .9em;}
div.comment {padding: 7px 10px 0px 10px; background: #d1d1d1; border: 1px solid #444; border-right: 2px solid #222; border-bottom: 2px solid #222; margin-bottom: 20px;}
.comment-body {padding: 1px 25px 10px 80px; background: #fff; min-height: 55px;}
div.usericon {float: left; margin-right: 12px;}

tr.odd {background: #fff;}
tr.even {background: #ccc;}
td.created, {font-size: .9em; padding-top: 5px; padding-bottom: 5px;}
td.last-reply {font-size: .9em; text-align: right; padding-left: 5px;}

Pages

Subscribe with RSS Subscribe to RSS - Theme development