Forums.TastyPlacement.com
SEO, Web Design, Webmaster, & Web Development Forums
 

Go Back   Webmaster, Web Design & SEO Forums - Forums.TastyPlacement.com > Web Design & Development > Blogging & Wordpress > Wordpress Themes

Wordpress Themes

Post your free wordpress themes here. Themes for sale should be in the Buy and Sell section.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 03-13-2009, 12:40 AM
MedicalWebsiteDesignPros's Avatar
MedicalWebsiteDesignPros MedicalWebsiteDesignPros is offline
Consigliere
 
Join Date: Mar 2009
Posts: 7
Default Wordpress Theme - Dark Smoke

Wordpress Theme - Dark Smoke

Description: A dark and sophisticated WP theme with a 2 column layout, multiple widget-ready placement. Active widget-based footer. Transparent header menu and sidebar. Background picture can easily be replaced with your own dark image.



Download: Dark Smoke WP Theme.

Demo: Dark Smoke Wordpress Theme Demo.
__________________
Medical Website Design Pros
Reply With Quote
  #2  
Old 03-13-2009, 01:04 AM
Donald.McMahan Donald.McMahan is offline
Junior Member
 
Join Date: Mar 2009
Posts: 1
Default Question on Dark Smoke

First off thank you so much for making the dark smoke theme available to the wordpress comunity, I have a question that any dummie who knows anything at all about html should be able to work out for himself, sorry but i'm not just any dummie i am one who has to ask. i would like to change the color of the sub-title from red to green. there is i am sure some little bit of code that i can change but i don't know what or where. thank you for any help you can offer and thanks again for this great looking theme
Reply With Quote
  #3  
Old 03-13-2009, 01:05 AM
MedicalWebsiteDesignPros's Avatar
MedicalWebsiteDesignPros MedicalWebsiteDesignPros is offline
Consigliere
 
Join Date: Mar 2009
Posts: 7
Default

It's really easy: in the "dark smoke" folder is a file called style.css. That .css file has all the attributes for colors, margins, etc for the entire theme. Now, the red text you are talking about appears here in style.css:

#header .description {
padding: 4px 0px 0px 18px;
font-size: 24px;
font-family: Tahoma, Arial, Verdana;
color: #CC0000;

--see that last line that says "color: #CC0000"? Well, that is the code for red. You need to change the "CC0000" to the color code for the color you want. To find the 6-digit code for your new color, go here: http://html-color-codes.com/ It should be a breeze, but write back if you get stuck.
__________________
Medical Website Design Pros
Reply With Quote
  #4  
Old 03-14-2009, 03:37 AM
bcfilmmaker bcfilmmaker is offline
Junior Member
 
Join Date: Mar 2009
Posts: 2
Default

I installed the "Dark Smoke 1.8.1" Wordpress theme for a friend. We really like the look of the layout but I do have one question for you:

Is there anyway we can put a "Home" link at the top of the site? (like About etc) Most people will not know to click on the title of the blog to get back to the main page. I tried to create a "Home" Page but the permalink won't allow me to just use the main url.

Thanks for your help.

Peter
Reply With Quote
  #5  
Old 03-14-2009, 06:14 PM
MedicalWebsiteDesignPros's Avatar
MedicalWebsiteDesignPros MedicalWebsiteDesignPros is offline
Consigliere
 
Join Date: Mar 2009
Posts: 7
Default

Yep...you can...

We'll just ad a "home" link manually.

We are going to add this line to the file that generates the header:

<li><a href="<?php echo get_option('home'); ?>/">Home</a></li>

So, you need to open the file "header.php" within the darksmoke template folder. You find the template folder in "yoursite.com/wp-content/themese/darksmoke/" You can open the header.php file in windows notepad or any simple text editor. It's only about 30 lines long, so it's easy to modify.

You want to find, in that header.php file, the following lines:

<div class="slim-content-box">
<ul><?php wp_list_pages('title_li=&depth=1&sort_column=menu_ order');?></ul>
</div>


and you want to change them to the following, inserting that line of code from above, just after the "<ul>" tag at the beginning of line two:

<div class="slim-content-box">
<ul><li><a href="<?php echo get_option('home'); ?>/">Home</a></li><?php wp_list_pages('title_li=&depth=1&sort_column=menu_ order');?></ul>
</div>


Save header.php and upload it to the directory call darksmoke where the theme files reside, and you'll have a "home" link on the top menu bar.

Congratulations, you are now a wordpress coder. If you get stuck, post here and I'll email you the file and/or upload it for you.
__________________
Medical Website Design Pros
Reply With Quote
  #6  
Old 03-15-2009, 08:56 PM
JayD JayD is offline
Junior Member
 
Join Date: Mar 2009
Posts: 2
Default

Hey, firstly thanks for the great theme

I installed it for a friend when I set up his wordpress and noticed a slight bug. On the main page it looks great, but whenever you click onto an individual post or category, it pushes the footer into the sidebar and some things run out of the borders.

Not sure if it is something you are aware of or know of a quick fix for.

Thanks in advance,
Jay
Reply With Quote
  #7  
Old 03-16-2009, 02:10 AM
bcfilmmaker bcfilmmaker is offline
Junior Member
 
Join Date: Mar 2009
Posts: 2
Default

Quote:
Originally Posted by MedicalWebsiteDesignPros View Post
Yep...you can...

We'll just ad a "home" link manually.

We are going to add this line to the file that generates the header:

<li><a href="<?php echo get_option('home'); ?>/">Home</a></li>

So, you need to open the file "header.php" within the darksmoke template folder. You find the template folder in "yoursite.com/wp-content/themese/darksmoke/" You can open the header.php file in windows notepad or any simple text editor. It's only about 30 lines long, so it's easy to modify.

You want to find, in that header.php file, the following lines:

<div class="slim-content-box">
<ul><?php wp_list_pages('title_li=&depth=1&sort_column=menu_ order');?></ul>
</div>


and you want to change them to the following, inserting that line of code from above, just after the "<ul>" tag at the beginning of line two:

<div class="slim-content-box">
<ul><li><a href="<?php echo get_option('home'); ?>/">Home</a></li><?php wp_list_pages('title_li=&depth=1&sort_column=menu_ order');?></ul>
</div>


Save header.php and upload it to the directory call darksmoke where the theme files reside, and you'll have a "home" link on the top menu bar.

Congratulations, you are now a wordpress coder. If you get stuck, post here and I'll email you the file and/or upload it for you.
==========

Just did what you said and it worked perfectly.

Thanks again.

Peter
Reply With Quote
  #8  
Old 03-16-2009, 08:51 PM
TastyPlacement's Avatar
TastyPlacement TastyPlacement is offline
Administrator
 
Join Date: Mar 2009
Posts: 12
Default

Jay,

On my installation it renders fine...can you show me the page where you installed it?

-Michael

Quote:
Originally Posted by JayD View Post
Hey, firstly thanks for the great theme

I installed it for a friend when I set up his wordpress and noticed a slight bug. On the main page it looks great, but whenever you click onto an individual post or category, it pushes the footer into the sidebar and some things run out of the borders.

Not sure if it is something you are aware of or know of a quick fix for.

Thanks in advance,
Jay
Reply With Quote
  #9  
Old 03-16-2009, 09:59 PM
MedicalWebsiteDesignPros's Avatar
MedicalWebsiteDesignPros MedicalWebsiteDesignPros is offline
Consigliere
 
Join Date: Mar 2009
Posts: 7
Default Dark Smoke Theme Updated v1.9

Jay noticed a bug in the way the footer renders on some pages.

v1.9 takes care of that.

Download here: Dark Smoke Wordpress theme v1.9
__________________
Medical Website Design Pros
Reply With Quote
  #10  
Old 03-16-2009, 10:32 PM
JayD JayD is offline
Junior Member
 
Join Date: Mar 2009
Posts: 2
Default

Thanks for the fix Works like a charm now.
Reply With Quote
Reply

Tags
dark smoke, theme, wordpress

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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. The time now is 12:28 AM.