|
![]() |
![]() |
![]() |
![]() |
![]() |
|
|
|
|
#1 |
|
Wheither you think you can or you think you can't, Your right.
|
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. |
|
|
|
|
|
#2 |
|
There's Xanax in my thurible!
|
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. |
|
|
|
|
|
#3 | |
|
Of all the things I've lost, I miss my mind the most.
|
Quote:
I tried just copying Code:
<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar(1) ) : ?>
Can't believe I just started playing with wordpress today, and already I'm trying to hack it, lol.
__________________
Our 3D Comics and Props on Renderotica |
|
|
|
|
|
|
#4 | |
|
Oh no, I'm sweating like Roger Ebert
|
Quote:
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>
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(''); ?>
|
|
|
|
|
![]() |
|
|