Topic: Credit line in footer...

Jason... love this theme and I'm using it (with some personalization, primarily logo in background) at Roughboy.net. I've gone through a handful of themes over the past, none of which have really satisfied my design requirement until I discovered yours. However I have one problem and not being an accomplished PHP or CSS coder, I'm not having any luck resolving it. I've added a credit line in the footer (used Blog Copyright Plugin to do this). I believe you deserve to be acknowledged as the theme designer so I added a credit to you following the copyright notice. It appears at the very bottom of the screen, which is fine, however, it's jammed up against the far left edge of the window. I would like to have it float left in the same x position as the blog title and tag line in the header but I don't know how to get it to move into that desired position. Any suggestion you have would be greatly appreciated. I expect some additional code needs to be added to the CSS file, but anything I've tried hasn't had any effect.

Respects,
W. P. Rayner

Re: Credit line in footer...

Do you have a link to your site?

Re: Credit line in footer...

The site address is http://roughboy.net. I've just turned off Maintenance Mode temporarily so you should be able to get to the site with no problem. I'm in the process of adding content, so will be working on the site throughout most of today.

I did notice one other issue. Sometimes when you click on a post title, the post window doesn't open. You have to scroll a spot or two through the post carousel and go back, then click on the title and the post will open. Is this a little glitch or have I messed something up?

Thanks again for your help.

W P Rayner

Re: Credit line in footer...

Jason:

Any thoughts yet on how to go about formatting the copyright/credit line in the footer? At the very least I'd like to be able to center it, but would really prefer having it float at the same left position as the blog title and tag line at the top of the page.

Otherwise blog is working great. No problems posting or formatting pages and posts. Haven't tried the video posting yet but will get to that eventually.

W P Rayner

Re: Credit line in footer...

I am currently still on vacation in Chicago, but I will be releasing several updates to the Folio theme next week.

Jason

Re: Credit line in footer...

Jason:

Thanks for the note. I've pretty much solved the credit line issue. I hard-coded the credit line copy into the footer.php file and added a footer div. I was able to activate RSS link and the link to your site. Then I added a footer style into the css file which allowed me to position and size the credit line. The only thing I haven't been able to change is the color. I'd like it to be a little darker but I haven't been able to alter the color independently from the rest of the theme. When you return from your vacation, if you have any thoughts on how to do that in the CSS file, that would solve my issue.

I haven't been able to get videos to post properly yet, but that's a low priority issue for me at this time. They look and function alright in the post page, but when published they pop up in a second window below the thumbnail and generally mess up the right side of the blog. If you have any ideas on that, that would be great, but as I say, it's a low priority for now.

Thanks again for the great theme.

Respects,
W P Rayner

Re: Credit line in footer...

I will have a look as soon as I get back home tomorrow afternoon.

Re: Credit line in footer...

Hey Jason,

May I know what is the update of this problem? Was it fixed already?

Simulation pret

Last edited by Sunriser (06.25.2009 10:36 am)

Re: Credit line in footer...

To change the color of the text in your footer, just add these 2 lines to your style.css file:

#footer p{color:#444444}
#footer p a{color:#666666}

The first line changes the regular text color and the second line changes the color of the links. Just play around with the numbers until you get a color you like.

Re: Credit line in footer...

Hi there . I am using a plug-in that works with this theme.  Add to footer plug-in allow you to write html code and more features as analytics code. It can be a solution for those that want only write a simple line on the footer. I hope it help somebody!!

Re: Credit line in footer...

Thanks for the suggestion.

Re: Credit line in footer...

Alex: Thanks for the tip, I'll give that a try & post with the results... much appreciated.

Gintoni: I started out using the Blog Copyright plugin which works with the theme but I couldn't center it or add additional active links to the credit line. No matter what I tried it was jammed up against the left edge of the window. So I switched to a coded credit line in the footer.php file and added a footer style in the CSS file and it's been working just fine.

Re: Credit line in footer...

Color change works perfectly in the footer credit line... Thanks again. I also added a line to get the desired hover color so it would match the balance of the site.

Thanks for all the help and tips guys...

I'm going to tackle the video posting again this weekend. Will let you know if I still run into any problems there.

W P Rayner

Last edited by wprayner (06.25.2009 07:35 pm)

Re: Credit line in footer...

Good to hear everything is working out for you.

Jason

15

Re: Credit line in footer...

Love the Folio elements theme. It's exactly what I was seeking. Thank you, Jason. I also have to give a shout out to W P Rayner. Your site is stunning and from your posts I have been able to solve some challenges (most notably w/the background... I didn't think to overlay my logo over the orig 75 image.)

My current challenge is the footer. If there's any way to learn more about coding to get the footer centered?The available plug-ins do not center, and it really is a must if using a footer. Many thanks.

Re: Credit line in footer...

@HT, if you can be more specific about what you want in the footer, we can do a better job of letting you know how to accomplish it.

Re: Credit line in footer...

Yes, thanks again to Jason and Press75 for a great theme. Thanks also for the good words HT. Actually concerning the background, I didn't just overlay the logo. I reconstructed the background image using the original Press75 background as a template. It took some doing, mostly to get the gradients correct, but I eventually got it to work.

Concerning the footer I added the necessary code to the footer.php file after the opening line - <?php wp_footer(); ?>. This is the code I added, just change the text and links to suit your needs:

<div id="footer">
    <p>Copyright &copy; 2008&ndash;2009 <a href="http://roughboy.net">Roughboy</a>. All rights reserved. | <class="rss"><a href="<?php bloginfo('rss2_url'); ?>" title="Syndicate this site using RSS"><acronym title="Really Simple Syndication">RSS</acronym> Feed</a> | Proudly powered <span class="low">by</span> <a href="http://www.wordpress.org">Wordpress 2.8</a> and using the Folio Elements theme <span class="low">by</span> <a href="http://www.press75.com/">Jason Schuller & Press75</a></p>
</div>

I'm not a coder so am not sure it's absolutely correct or the most efficient way to do it but it seems to work.

Then in the style.css file I added a footer section following the site header section as follows:

#footer {
float: left;
margin: 10px 0 0 149px;
font-size: .9em;
}

#footer p{color: #444444}
#footer p a{color: #666666}
#footer p a:hover {color: #9d2201}

This controls the formatting of the footer. Alex Mansfield provided the code solution for changing the footer font colors.

Hope that helps.

W P Rayner

Last edited by wprayner (07.01.2009 12:08 am)

18

Re: Credit line in footer...

Excellent, excellent, excellent. Many thanks for the footer code, WP Rayner! It's awesome. Although I found that my copy is not as long so the line didn't center. I can add more text to fix.

Alex: Do you have any suggestions re: code?

WP Rayner: what I did with the background was hokey... I opened the 75 file in photoshop, brushed out the 75 image and placed my logo on top. I also used one of the paintbrushes to add a splash of white behind the logo so it looks like the demo. (I'm not a graphic designer or coder for that matter... just finding ways to get around it all!)

Many thanks again!

Re: Credit line in footer...

Just add "text-align:center;" to this:

#footer {
float: left;
margin: 10px 0 0 149px;
font-size: .9em;
}

In the end, this is what it should look like:

#footer {
float: left;
margin: 10px 0 0 149px;
font-size: .9em;
text-align:center;
}

That should center the footer text for you.

Last edited by Alex Mansfield (07.01.2009 10:07 am)

20

Re: Credit line in footer...

Hi Alex, I entered the code in the style sheet, but it didn't seem to take.

Re: Credit line in footer...

I just took a look and I found what I missed earlier (sorry about that). It centered the text inside the footer, but the footer didn't take up the whole width and was aligned to the left. Add "width:100%;" to the footer section to correct that. Here's the final footer section:

#footer {
float: left;
margin: 10px 0 0 149px;
font-size: .9em;
text-align:center;
width:100%;
}

I tested it out and it worked for me. Let us know if you run into any trouble.

22

Re: Credit line in footer...

I entered the code, but now it's flushed right.
Does it matter where the code is placed in the CSS file? I pasted it after: /* end content slider */
Here's what it looks like:


/* end content slider */

#footer {
float: left;
margin: 10px 0 0 149px;
font-size: .9em;
text-align:center;
width:100%;
}

#footer p{color: #444444}
#footer p a{color: #666666}
#footer p a:hover {color: #BA3048}

Re: Credit line in footer...

It looks like the margin is causing it to move right at least part of the way. There might be more to it than this, but you can try changing "margin: 10px 0 0 149px;" to "margin: 10px 0 0 0;"

If that doesn't do it, could you please provide a link so we can take a look at it? Thanks.

24

Re: Credit line in footer...

that worked! many thanks!

Re: Credit line in footer...

You're welcome. Sorry it took a few tries.