Greenguy's Board


Go Back   Greenguy's Board > Blogs and Blogging
Register FAQ Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Rate Thread Display Modes
Old 2008-05-23, 03:45 PM   #1
NY Jester
ICQ:147*079*406
 
NY Jester's Avatar
 
Join Date: Oct 2007
Location: Rock*ME*Hardplace
Posts: 2,996
Send a message via ICQ to NY Jester Send a message via AIM to NY Jester
Create your own WP theme

Id been looking at different themes and decided I wanted to be able to make my own but didnt know where to look...well I found one place..looks pretty good and easy to follow

http://www.wpdesigner.com/2007/02/19...ss-themes-huh/
__________________
The Sexy Side of Porn
NY Jester is offline   Reply With Quote
Old 2008-05-24, 11:44 AM   #2
ronnie
Wheither you think you can or you think you can't, Your right.
 
Join Date: Jun 2004
Location: midwest
Posts: 2,274
Send a message via ICQ to ronnie
The hard part, least for me is the CSS Layout, never does work like I want, I don't really get it yet. Once you get CSS down, the rest I think is a breeze, it's just calling the WP functions you need where you need them, and all can gotten at wordpress.org.

Maybe if I actually sit down and read the CSS books I bought like two years ago, I'd get it..

That is a good site though. Shame he sold it and the new owner doesn't seem to be doing much with it.
ronnie is offline   Reply With Quote
Old 2008-05-24, 12:14 PM   #3
Preacher
There's Xanax in my thurible!
 
Preacher's Avatar
 
Join Date: Apr 2005
Location: Wherever they screw on my head
Posts: 2,441
Send a message via ICQ to Preacher
I've made 5 personal themes for different blogs. All I do is take the default theme, because it has all the inserts in place already and strip the css and start styling from there.

When I want something in a different location, like in the header, it's easy just to copy that snippet of code out of the body or footer and paste it into the header.
__________________
NSCash * This Depraved World
Preacher is offline   Reply With Quote
Old 2008-05-24, 04:32 PM   #4
JohnnyR
I can now put whatever I want in this space :P
 
Join Date: Jun 2005
Location: Boobville... I like it way better here
Posts: 557
Send a message via ICQ to JohnnyR
seems like sponsoring WP themes are a good way to get some linkbacks... well at least for mainstream that is (tho I've also heard some oppinions advising against it)

thanks for the cool little article... too bad the resource fell in the hands of what seems to be an internet (money uber alles) "entrepreneur".
__________________
With sufficient thrust, pigs fly just fine!
JohnnyR is offline   Reply With Quote
Old 2008-05-26, 12:45 AM   #5
RedCherry
Of all the things I've lost, I miss my mind the most.
 
RedCherry's Avatar
 
Join Date: Apr 2004
Location: Middle of the Desert, Pahrump, NV
Posts: 3,187
Send a message via ICQ to RedCherry
Quote:
Originally Posted by Preacher View Post
When I want something in a different location, like in the header, it's easy just to copy that snippet of code out of the body or footer and paste it into the header.
Is there a way to get a widget in the header? Right now I have my tag cloud in my sidebar, but i'd love to have it across the top , just below the header, above the posts and sidebar.
I tried just copying
Code:
<?php if ( !function_exists('dynamic_sidebar')
        || !dynamic_sidebar(1) ) : ?>
up into the header, and that didn't seem to do it. I'm using the tag cloud that comes with the standard word press.

Can't believe I just started playing with wordpress today, and already I'm trying to hack it, lol.
RedCherry is offline   Reply With Quote
Old 2008-05-26, 03:00 AM   #6
walrus
Oh no, I'm sweating like Roger Ebert
 
walrus's Avatar
 
Join Date: May 2005
Location: Los Angeles
Posts: 1,773
Send a message via ICQ to walrus Send a message via Yahoo to walrus
Quote:
Originally Posted by RedCherry View Post
Is there a way to get a widget in the header? Right now I have my tag cloud in my sidebar, but i'd love to have it across the top , just below the header, above the posts and sidebar.
I took a quick look at your theme and I'd probably try duplicating all of the menu stuff in your CSS and call it something like tags and then add the div right under the menu div in your header file. Something like this:
Code:
<div id="menu">
		<ul>
		<li><a href="<?php bloginfo('url'); ?>">Home</a></li>
		<?php wp_list_pages('depth=1&title_li='); ?>
		</ul>
	</div>
<div id="tags">
		<ul>
<?php wp_tag_cloud('format=flat'); ?>
		</ul>
	</div>
You may need to play around with the height in the CSS or remove it but that should put your tag cloud right below your menu bar.

Of course I never get the code right the first time so you'll probably have to play around with it a bit.

For more info on the wordpress tag for a tag cloud go here: http://codex.wordpress.org/Template_Tags/wp_tag_cloud

I never learned widgets, I use template tags for everything.

I just looked at your blog and noticed your using simple tags, the code for that would be
Code:
<?php st_tag_cloud(''); ?>
The usage for that can be found here: http://code.google.com/p/simple-tags/wiki/TagCloud
__________________
Naked Girlfriend Porn TGP
free partner account
walrus is offline   Reply With Quote
Old 2008-05-26, 10:06 AM   #7
ronnie
Wheither you think you can or you think you can't, Your right.
 
Join Date: Jun 2004
Location: midwest
Posts: 2,274
Send a message via ICQ to ronnie
It might not work, because you probably already have a dynamic_sidebar(1)? You need to register a new side bar.

Or of course how Walrus said..
ronnie is offline   Reply With Quote
Old 2008-05-28, 08:55 AM   #8
digifan
...and since we know an end will come it makes our living so much fun
 
digifan's Avatar
 
Join Date: Aug 2003
Location: In your dreams, baby
Posts: 3,835
Send a message via ICQ to digifan
There is a simple generator out there, see
http://www.yvoschaap.com/wpthemegen/
__________________

Webair Rocks
digifan is offline   Reply With Quote
Old 2008-06-04, 12:43 PM   #9
NY Jester
ICQ:147*079*406
 
NY Jester's Avatar
 
Join Date: Oct 2007
Location: Rock*ME*Hardplace
Posts: 2,996
Send a message via ICQ to NY Jester Send a message via AIM to NY Jester
Digi I could kiss you. Thats a great link. Simple easy..just what I need LOL
__________________
The Sexy Side of Porn
NY Jester is offline   Reply With Quote
Old 2008-06-04, 07:33 PM   #10
papagmp
That'll teach you to leave your sister unattended.....
 
papagmp's Avatar
 
Join Date: Jan 2007
Location: Colorado Springs
Posts: 1,803
Send a message via ICQ to papagmp
Quote:
Originally Posted by digifan View Post
There is a simple generator out there, see
http://www.yvoschaap.com/wpthemegen/
Nice resource Digifan.

Although I've used a lot of free themes, I tend to modify them most of the time. I'm using widgets less and less and just hard coding my sidebars, headers and footers. Changing colors and fonts in CSS is a breeze - positioning is a bit trickier.
__________________

Submit: OutlawFreePorn
papagmp is offline   Reply With Quote
Old 2008-06-04, 08:25 PM   #11
Ms Naughty
old enough to be Grandma Scrotum
 
Ms Naughty's Avatar
 
Join Date: Aug 2003
Location: Australia
Posts: 1,408
Send a message via ICQ to Ms Naughty
That's a very cool resource
__________________
Promote Bright Desire
Ms Naughty is offline   Reply With Quote
Old 2008-06-04, 11:23 PM   #12
walrus
Oh no, I'm sweating like Roger Ebert
 
walrus's Avatar
 
Join Date: May 2005
Location: Los Angeles
Posts: 1,773
Send a message via ICQ to walrus Send a message via Yahoo to walrus
Quote:
Originally Posted by papagmp View Post
Nice resource Digifan.

Although I've used a lot of free themes, I tend to modify them most of the time. I'm using widgets less and less and just hard coding my sidebars, headers and footers. Changing colors and fonts in CSS is a breeze - positioning is a bit trickier.
Until the new project, I'd never used a widget. I personally find it much easier to get things looking the way I want by hardcoding the sidebar.
__________________
Naked Girlfriend Porn TGP
free partner account
walrus is offline   Reply With Quote
Old 2008-06-05, 02:42 AM   #13
Vivaldi
I don't have to be careful. I got a gun
 
Vivaldi's Avatar
 
Join Date: Apr 2004
Posts: 367
Send a message via ICQ to Vivaldi
Quote:
I personally find it much easier to get things looking the way I want by hardcoding the sidebar.
same here ... You could say I feel more comfortable this way
Vivaldi is offline   Reply With Quote
Old 2008-06-05, 10:26 AM   #14
Bobc01
Banned
 
Join Date: Apr 2007
Location: Hell
Posts: 817
Many thanks for that resource Digifan, another toy for me to play around with.
Bobc01 is offline   Reply With Quote
Old 2008-06-05, 11:14 AM   #15
digifan
...and since we know an end will come it makes our living so much fun
 
digifan's Avatar
 
Join Date: Aug 2003
Location: In your dreams, baby
Posts: 3,835
Send a message via ICQ to digifan
I'm glad you like it
__________________

Webair Rocks
digifan is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 07:36 PM.


Mark Read
Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
© Greenguy Marketing Inc