Recent Topics

1 Aug 01, 2006 23:36    

I guess this question would be for Francois....or anyone who knows. I changed the color scheme, but there is a portion of the header (post title header) which remains the original color, and I can't seem to find where it is defined.

I can edit the .js file and make the rounded corners and the color band disappear, but that kind of defeats the purpose, right?

Anyway, any pointers would be greatly appreciated.

:D

2 Aug 03, 2006 09:10

_main.php defines the colours, the bit you want to change is the last line ;)

	<script type="text/javascript">
		window.onload=function()
		{
			if(!NiftyCheck())
					return;
			Rounded("div.outerwrap","all","transparent","#fff","");
			Rounded("div.posts","all","transparent","#fff","");
			Rounded("div.bSideBar","all","transparent","#fff","");
			Rounded("div.bTitle","top","#fff","#f00","smooth");
		}
	</script>

¥

3 Aug 03, 2006 13:48

Wow, thanks a million. I looked just about everywhere but _main.php too.

That is just too easy.

:lol:

4 Aug 03, 2006 15:22

I'm good at being easy :D ..... hmm :-/

¥

5 Aug 06, 2006 00:55

And if you need the email to the blog author to work with the nifty corners do this:

copy the _msgform.php from the /skin dir and apply these changes to the _main.php:

		<div class="bSmallHead">
		<?php
			$Item->permanent_link( '#icon#' );
			echo ' ';
			$Item->issue_time();
                        echo ', ';
                        $Item->author();
			$Item->msgform_link( $Blog->get('msgformurl') );
			echo ', ', T_('Categories'), ': ';
			$Item->categories();			
			echo ' &nbsp; ';
		?>


the $Item->msgform_link( $Blog->get('msgformurl') );
is the new one

make this cange also:

<?php // ---------------- START OF INCLUDES FOR LAST COMMENTS, STATS ETC. ----------------
	switch( $disp )
	{
		case 'comments':
			// this includes the last comments if requested:
			require( dirname(__FILE__).'/_lastcomments.php' );
			break;

		case 'arcdir':
			// this includes the archive directory if requested
			require( dirname(__FILE__).'/_arcdir.php');
			break;

		case 'profile':
			// this includes the profile form if requested
			require( dirname(__FILE__).'/_profile.php');
			break;
		case 'msgform':
			// this includes the email form if requested
			require( dirname(__FILE__).'/_msgform.php');
			break;
		case 'subs':
			// this includes the subscription form if requested
			require( dirname(__FILE__).'/_subscriptions.php');
			break;
	}
// ------------------- END OF INCLUDES FOR LAST COMMENTS, STATS ETC. -------------------

At least I needed this for the 1.8 :D


Form is loading...