Blogger Talk blogging forums Submit your blog today! 
Blogger Talk
Blogger Talk
View topic - Tagline question for Wordpress



 Forum FAQ  •  Search  •   Statistics   •   Memberlist   •   Usergroups   •  Register  •  Profile  •  Log in to check your private messages   

BloggerTalk.net Forum Index » Blogging Newbies » Tagline question for Wordpress

Post new topic  Reply to topic Goto page 1, 2  Next
 Tagline question for Wordpress « View previous topic :: View next topic » 
Author Message
MouseExtra
PostPosted: Thu Dec 07, 2006 4:31 pm    Post subject: Tagline question for Wordpress Reply with quote

Primary member
Primary member

Joined: Nov 28, 2006
Posts: 40

I'm trying to customize a template that does not automatically put the tagline in/under the header. Can anyone tell me how to make it add this?
Back to top
View user's profile Send private message
Sponsored Ads
Shawn
PostPosted: Thu Dec 07, 2006 5:13 pm    Post subject: Reply with quote

Site Developer
Site Developer

Joined: Sep 06, 2006
Posts: 327
Location: Canada

Hello David

Are you refering to the discription tag / Tagline that appears at the top under your Blogname?

If so look inside the header.php file!

Go to Presentation - Theme editor -> then select header.php to view the source!

You should have the following tag just under this tag

Code:
<a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?>


And this is the tag you need to show the discription!

Code:
<?php bloginfo('description'); ?>


Now if this is in there login to the WordPress Admin panel and navigate to:

Options -> General

Insure the tagline is present and if not put one in and be sure to click Update Options.

Hope this helps!

Shawn icon_biggrin.gif
_________________
| Affordable Web-Hosting | FREE Blog Directory |
PC Windows Tips |
Ultra Game Play
Back to top
View user's profile Send private message Visit poster's website
MouseExtra
PostPosted: Thu Dec 07, 2006 8:04 pm    Post subject: Reply with quote

Primary member
Primary member

Joined: Nov 28, 2006
Posts: 40

Thanks Shawn, but I don't see exactly that. And when I tried in a similar spot it didn't work.

Here's the closest I see...

<h1><a href="<?php echo get_settings('home'); ?>"><?php bloginfo('name'); ?></h1>

That's towards the bottom. Also it just says header, not header.php
Back to top
View user's profile Send private message
Shawn
PostPosted: Thu Dec 07, 2006 10:08 pm    Post subject: Reply with quote

Site Developer
Site Developer

Joined: Sep 06, 2006
Posts: 327
Location: Canada

Ahhhhhhh...........

I said you should see this

Code:
<a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?>


It don't matter about the H1 tags, I just needed you to verify if this tag was in your header.php file....which should be under the above code!!!!

Code:
<?php bloginfo('description'); ?>


Then I said to verify it by going to the WordPress Admin Panel - click -> Presentation -> then click theme editor!

Once on the Theme editor page select header.php file from the right hand side and see if this tag exisit!

Code:
<?php bloginfo('description'); ?>


If it doesn't you will need to add it to the header.php file

So change it to this

Code:
<h1><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></h1><br /><?php bloginfo('description'); ?></h1>


Shawn icon_smile.gif
_________________
| Affordable Web-Hosting | FREE Blog Directory |
PC Windows Tips |
Ultra Game Play
Back to top
View user's profile Send private message Visit poster's website
MouseExtra
PostPosted: Fri Dec 08, 2006 9:51 am    Post subject: Reply with quote

Primary member
Primary member

Joined: Nov 28, 2006
Posts: 40

Perfecto!! icon_biggrin.gif

Now, I only need to figure out how to change the color, font, and size. Off to my reading material!!!
Back to top
View user's profile Send private message
Shawn
PostPosted: Fri Dec 08, 2006 1:33 pm    Post subject: Reply with quote

Site Developer
Site Developer

Joined: Sep 06, 2006
Posts: 327
Location: Canada

Hello David

Well to do that you can wrap it with another H tag and set it with a color value for example

Code:
<h1><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></h1><br /><h3><span class="color: #YOURCOLORCHOICE;"><?php bloginfo('description'); ?></span></h3>


The blog looks good, it has a scoll bar at the bottom but I am sure your still working on it so keep up the great work icon_wink.gif

Hope this helps

Shawn icon_biggrin.gif
_________________
| Affordable Web-Hosting | FREE Blog Directory |
PC Windows Tips |
Ultra Game Play
Back to top
View user's profile Send private message Visit poster's website
MouseExtra
PostPosted: Fri Dec 08, 2006 1:41 pm    Post subject: Reply with quote

Primary member
Primary member

Joined: Nov 28, 2006
Posts: 40

And then in that tag I can set font-size: WHATEVER and all that?

One last thing, and this one really has me vexed as I can't find much on it. On this template, it has About and Contact tabs at the top. I can't for the life of me figure how to activate them. Right now they just refresh the page
Back to top
View user's profile Send private message
MouseExtra
PostPosted: Fri Dec 08, 2006 1:42 pm    Post subject: Reply with quote

Primary member
Primary member

Joined: Nov 28, 2006
Posts: 40

Shawn wrote:
The blog looks good, it has a scoll bar at the bottom but I am sure your still working on it so keep up the great work icon_wink.gif


What's that? I assume you mean "scroll bar", but I don't know what that means
Back to top
View user's profile Send private message
Shawn
PostPosted: Fri Dec 08, 2006 5:01 pm    Post subject: Reply with quote

Site Developer
Site Developer

Joined: Sep 06, 2006
Posts: 327
Location: Canada

Hello David

If you use my above tag it sets the font size to a H3 size or you can simply remove the < h3 > </ h3> tag and specify a font and size within the span style class...

Example:
Code:
<h1><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></h1><br /><span style="font-size:1.4em;font-family: Georgia;color: #YOURCOLORCHOICE;"><?php bloginfo('description'); ?></span><p>


Yes I ment the scroll bar at the bottom of the browser icon_wink.gif

Shawn icon_biggrin.gif
_________________
| Affordable Web-Hosting | FREE Blog Directory |
PC Windows Tips |
Ultra Game Play
Back to top
View user's profile Send private message Visit poster's website
MouseExtra
PostPosted: Fri Dec 08, 2006 8:14 pm    Post subject: Reply with quote

Primary member
Primary member

Joined: Nov 28, 2006
Posts: 40

Shawn wrote:
Yes I ment the scroll bar at the bottom of the browser icon_wink.gif


Shawn, I'm not seeing that. No scroll bar for me
Back to top
View user's profile Send private message
Shawn
PostPosted: Fri Dec 08, 2006 10:20 pm    Post subject: Reply with quote

Site Developer
Site Developer

Joined: Sep 06, 2006
Posts: 327
Location: Canada

Hello David

Well then that depends what your screen resolution is set to, I always check everyones site out in all screen resolutions to see if its fluint with all widths and at 800x600 there's a scroll bar.

Shawn icon_wink.gif
_________________
| Affordable Web-Hosting | FREE Blog Directory |
PC Windows Tips |
Ultra Game Play
Back to top
View user's profile Send private message Visit poster's website
MouseExtra
PostPosted: Sat Dec 09, 2006 8:46 am    Post subject: Reply with quote

Primary member
Primary member

Joined: Nov 28, 2006
Posts: 40

So can it be fixed to make sure that doesn't happen?

A friend just told me they saw it too.
Back to top
View user's profile Send private message
Shawn
PostPosted: Fri Dec 15, 2006 1:53 pm    Post subject: Reply with quote

Site Developer
Site Developer

Joined: Sep 06, 2006
Posts: 327
Location: Canada

Hello Dave icon_biggrin.gif

Well for starters you would need to modify the CSS style sheet, and fix the widths on the center column..

To do this login to the WordPress Admin Panel, click Presentation and then theme editor!

On the right hand side click the file thats called style.css!

Now your going to want to find the CSS attribute for the center column, and by looking at the source code I see the following

Code:
<div id="content">


So look through the style.css file for the atribute 'content'.

You should see the following

Code:
#content {
float: left;
text-align: left;
padding: 15px;
background: white;
margin:2px;
overflow: hidden;
width: 568px !important;
display: inline; /* IE double margin bug fix */
}


Now you just need to edit the width as its set to 568px's

Example:

Code:

#content {
float: left;
text-align: left;
padding: 15px;
background: white;
margin:2px;
overflow: hidden;
width: 380px !important;
display: inline; /* IE double margin bug fix */
}


I would set this to 380px or 400px's at the most once you do that I'll take another look to see where you are and what else needs to be adjusted!

Shawn
icon_biggrin.gif
_________________
| Affordable Web-Hosting | FREE Blog Directory |
PC Windows Tips |
Ultra Game Play
Back to top
View user's profile Send private message Visit poster's website
MouseExtra
PostPosted: Sat Dec 16, 2006 2:46 pm    Post subject: Reply with quote

Primary member
Primary member

Joined: Nov 28, 2006
Posts: 40

Ok, that's done. As you can probably tell, it just shrinks the center column and keep the overall width
Back to top
View user's profile Send private message
MouseExtra
PostPosted: Tue Dec 19, 2006 1:39 pm    Post subject: Reply with quote

Primary member
Primary member

Joined: Nov 28, 2006
Posts: 40

when this does fit correctly into a 800x600, will it look the proper size for larger resolution screens?
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic  Reply to topic Goto page 1, 2  Next Page 1 of 2

BloggerTalk.net Forum Index » Blogging Newbies » Tagline question for Wordpress
Jump to:  



You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Design by Invision-Graphics | Powered by phpBB © 2006 phpBB Group
Internet Advertising | Buy Anything On eBay | Loans | Personal Loans | Credit Counseling
BloggerTalk.net Statistics
 Today: 10,773  Yesterday: 13,214  Unique Hits: 20269  Total Hits: 7,404,581
Page Rendered in: 0.65s - Total Queries: 0 - MySQL DB: 121 mb's - Pages served in past 5 minutes: 29

BloggerTalk.net All rights reserved.
Unauthorized distribution, transmission or republication strictly prohibited.
Design by Invision-Graphics.com Proudly hosted by VisionThisHosting.com