Theme Footer Question
Permalink 1 user found helpful
I am a newbie, obviously and I am working in a theme, earthtone.
I have 3 questions:
1. How do I edit the footer???? I just want to get the concrete5 info. out and add that to a credit page and put my own info. in the footer.
2. How do I create a sub menu at the bottom?
3. How can I create hover buttons in the main nav at the top?
Sorry if this is elementary...but I need help. Frustrated.
Thank you to Jesus and anyone else who will assist!
I have 3 questions:
1. How do I edit the footer???? I just want to get the concrete5 info. out and add that to a credit page and put my own info. in the footer.
2. How do I create a sub menu at the bottom?
3. How can I create hover buttons in the main nav at the top?
Sorry if this is elementary...but I need help. Frustrated.
Thank you to Jesus and anyone else who will assist!
Hi,
1. In themes/tony_earthtone/elements/footer.php
you can change you footer and to create new area use the following code
2. To create a sub menu you have to understand the navigation block. Visit the below given links it will help you
http://www.concrete5.org/index.php?cID=49182...
http://www.concrete5.org/documentation/general-topics/add_an_auto-n...
3. For creating hover button you need to do it with CSS
in minimalist_base.css
change the following line
as
and inside the a:hover you can do whatever you want in hover
1. In themes/tony_earthtone/elements/footer.php
you can change you footer and to create new area use the following code
<div id="footer"> <?php $a = new Area('footer'); $a->display($c); ?> </div>
2. To create a sub menu you have to understand the navigation block. Visit the below given links it will help you
http://www.concrete5.org/index.php?cID=49182...
http://www.concrete5.org/documentation/general-topics/add_an_auto-n...
3. For creating hover button you need to do it with CSS
in minimalist_base.css
change the following line
#page #header ul.nav-header li a,#page #header ul.nav-header li a:hover{ /*color:#999999*/ }
as
#page #header ul.nav-header li a{ /*color:#999999*/ } #page #header ul.nav-header li a:hover {color: red;}
and inside the a:hover you can do whatever you want in hover
Thank you all for the information.
I am still having a problem removing the footer where it says copyright 2010 concrete5. I am going to list this on a credit page, but need to get it out of the footer. Can someone just list, step by step in idiot form for me, how to do this? Also, all the information I'm reading people keep saying to make a copy of the theme before changing anything.......?
Can someone please, again, go step by step on how to do this?
Thank you thank you thank you in advance.
I am still having a problem removing the footer where it says copyright 2010 concrete5. I am going to list this on a credit page, but need to get it out of the footer. Can someone just list, step by step in idiot form for me, how to do this? Also, all the information I'm reading people keep saying to make a copy of the theme before changing anything.......?
Can someone please, again, go step by step on how to do this?
Thank you thank you thank you in advance.
You don't need to worry about copying. Anyway, FTP or use the file manager in channel to go to root/packages/tony earthwood leather /
theme/ earthwood leather / elements and open up footer.php. Then delete the span class pwered by, from he starting spannto the ending. And in the spot you deleted it put in the code I gave you earler
theme/ earthwood leather / elements and open up footer.php. Then delete the span class pwered by, from he starting spannto the ending. And in the spot you deleted it put in the code I gave you earler
Oh my goodness. Thank you for this. I have done it. I have officially baked you a cake. Thank you!!!!
Ps - is there a way to stop concrete5 from pulling up in the info tab?
What info tab?
Seriously, thank you again so much for your help.
In regards to this, in Windows Vista (yeah, I know...), the tabs that pull up still read
Concrete5 :: Home.
Now that the footer is clear is this just a matter of when it gets crawled again or is there still code somewhere that it's reading and I need to get rid of?
Thank you thank you thank you!
In regards to this, in Windows Vista (yeah, I know...), the tabs that pull up still read
Concrete5 :: Home.
Now that the footer is clear is this just a matter of when it gets crawled again or is there still code somewhere that it's reading and I need to get rid of?
Thank you thank you thank you!
Dashboard/ site settings and here should be a text field for your site name set to concrete5, hange it and save it
Again, thank you. You have been so outstanding.
Before you go, can you please point me to a tutorial or the right direction to add RSS to my site so others can subscribe?
Gracious Thanks.
Before you go, can you please point me to a tutorial or the right direction to add RSS to my site so others can subscribe?
Gracious Thanks.
Rss displayer block is preloaded, there are several rss creators in the marketplace, and page list has an rss feature. Also, would you min marking this question as solved that means people looking for answers can look here and find the best answer easily.
to create an editable area in edit mode. for the sub menu, once you have the new edit able area footer, click on add to footer and scroll down to auto nav and insert that. that'll give you a list of all your pages. finally,
#page #header ul.nav-header li a:hover{ background-image: url(images/headerlink.jpg); }