Community Forums › Forums › Design Tips and Tricks › Remove Title / Subscribe Area
This topic contains 17 replies, has 7 voices, and was last updated by jgi 3 months ago.
-
AuthorPosts
-
January 4, 2013 at 8:45 am #9475
First time posting on the new forums…
I am using Minimum 2.0; I want to remove the header / title area, and I also want to remove the subscribe area.
What in my functions.php file do I need to insert?
http://theologia.manicdreams.net
January 4, 2013 at 9:19 am #9484You can do this with CSS by modifying the #page-title element on line 479 of your child theme’s style.css file:
Change from this:
#page-title {
background-color: #F5F5F5;
border-bottom: 1px solid #E4E4E4;
border-top: 1px solid #E4E4E4;
clear: both;
margin: 0 auto;
overflow: hidden;
padding: 30px 0;
}To this
#page-title {
visibility: hidden;
}January 4, 2013 at 11:16 am #9511Thanks buddy_boy.
How do I remove the subscribe function?
January 6, 2013 at 8:55 pm #10021January 6, 2013 at 9:05 pm #10025To get rid of the subscribe button, remove this from the page-title.php:
<a class="page-title-button" href="#">' . __( 'Subscribe Now', 'minimum' ) . '</a>;
Susan @ Graphically Designing I’d love to customize your website! I tweet!
I’ve taken up the challenge! – help me answer some of the unanswered postsJanuary 13, 2013 at 1:46 pm #11623Sorry, I posted this onto an incorrect thread in the general discussion area. So, I’m pasting it here now.
Removing the above isn’t really working for me. I opened the Page-title.php file and the code you indicated to remove is on every line. I removed each of them and the site loaded an error and won’t display.
January 13, 2013 at 2:16 pm #11628There was a syntax error in the code I posted in this thread (I had a ‘ at the beginning and end of the code above – I’ve removed it to correct the error). Did you copy the code from this thread or the other one?
Remove this wherever you don’t want it
<a class="page-title-button" href="#">' . __( 'Subscribe Now', 'minimum' ) . '</a>
Susan @ Graphically Designing I’d love to customize your website! I tweet!
I’ve taken up the challenge! – help me answer some of the unanswered postsJanuary 13, 2013 at 2:32 pm #11631I’m good. I found a third thread that stated the syntax error. I’m all set. Thanks Susan.
January 13, 2013 at 2:42 pm #11635Great!
Susan @ Graphically Designing I’d love to customize your website! I tweet!
I’ve taken up the challenge! – help me answer some of the unanswered postsJanuary 13, 2013 at 6:53 pm #11706Buddy Boy put offered this to hide the page title. It works, but it also leave a huge white gap I can’t seem to close with css. Any ideas? Thanks.
#page-title {
visibility: hidden;
}January 14, 2013 at 9:46 pm #11995jjham – what is your sites URL?
January 14, 2013 at 9:52 pm #11997This reply has been marked as private.
January 14, 2013 at 10:07 pm #11998On line 675 of your child theme’s style.css file, try changing it to this:
.full-width-content #content {
margin-top: -110px;
width: 100%;January 14, 2013 at 10:09 pm #11999You will probably also need to make the change in bold below on 515:
#inner {
clear: both;
margin: 0 auto;
overflow: visible;
padding: 10px 0;
}January 14, 2013 at 10:14 pm #12000And once you make those changes, for the home page, try changing line 657 to:
#content-sidebar-wrap {
float: left;
margin-top: -110px;
width: 100%;
}Let me know when those 3 changes are made. Test the site over to make sure everything looks right on your pages/posts and report back.
-
AuthorPosts
You must be logged in to reply to this topic.