• Resolved colbyboy

    (@colbyboy)


    Hi, Can someone tell me how to remove one of the titles off of my posts in boldr theme? It appears there twice…once in black and once in blue…I would like to remove the blue one and also the blue rectangle topper left corner of posts as well. Appreciate any help!!

    http://www.3dmainstreamprinting.com

Viewing 14 replies - 1 through 14 (of 14 total)
  • Theme Author Iceable

    (@iceable)

    Hi,

    This is not the title appearing twice actually, but the title (in black) and the category of the post. It seems that you have placed each of your posts in a category that is the same as the post title (for SEO reasons I guess ?)

    You can either remove these spammy looking categories and categorize your posts with more relevant categories, or you can also hide the categories so they are not displayed below the post title. To do so, edit style.css and add this at the end:

    .post-category { display: none; }

    Thread Starter colbyboy

    (@colbyboy)

    Hi…I did as you said…I went into style.css and added what you told me to add at the end and it did not work. Perhaps there is a edit button that I did not see? I will try again.

    Thanks for your patience!

    Thread Starter colbyboy

    (@colbyboy)

    Hi…..Can someone please help me…using Boldr theme…I would like to remove my category titles on my posts that are directly under my titles because they are named the same…..I went into style.css to edit it…added .post-category { display: none; } at the end but it did not work.

    I also would like to delete the link s at bottom of posts that say next post and previous post…

    And remove the blue rectangle that is on every one of my posts in the left upper corner…

    http://www.3dmainstreamprinting.com

    Please help!! Thank you!

    Theme Author Iceable

    (@iceable)

    Hi,

    Just had a look at your site and could not see this code in style.css. Maybe you removed it since then ?

    Here’s the exact step-by-step to do this, with additional code to hide the “previous/next” button and the blue box (natively used to display the post date) in the upper left corner:

    – From your admin panel, go to Appearance > Editor
    – Click Stylesheet (style.css) at the bottom right
    – At the very end of this file (below the last */ ), add this:

    .post-category { display: none; }
    .article_nav { display: none; }
    .postmetadata .meta-date { display: none; }

    – Save the file
    – If you are using a caching plugin, make sure to empty the cache
    – Make sure to clear your browser’s cache when you check the results (otherwise you may not see the changes if your browser “remembers” the previous version of the file you have just modified)

    Thread Starter colbyboy

    (@colbyboy)

    Hi, Thank you for the info. Yes, I deleted the code because it did not work when I added it…most likely because I did not empty the cache as you said. I do not know how to do that….can you advise me on how to do that? I am very new to this so bear with me…:)

    Again, thank you for all your help!

    Thread Starter colbyboy

    (@colbyboy)

    Hi again…I did what you told me….It removed everything except the blue rectangular box….I looked at my plugins and didn’t see a caching plug-in, so assuming I am ok in that area.

    I guess I will have to live with the blue box , unless you have any other suggestions?

    Also, I tried to make my post titles a bigger font, but it would not work….any suggestions there? I went into edit and highlighted them and clicked on a bigger font size but they went back to the usual size.

    Thanks for all your help…you’re a life saver!!

    Theme Author Iceable

    (@iceable)

    Hi again,

    There’s a small typo in the code you copy/pasted on the 3rd line: you have “.postmetadata .meta-data” instead of “.postmetadata .meta-date“. This is why you still have the blue box πŸ™‚

    To make the post titles bigger, you can add this line after the previous code:

    #page-container h3.entry-title { font-size: 16px; }

    16px is the default size, so just change this to a bigger number as desired!

    Thread Starter colbyboy

    (@colbyboy)

    Hi, Oh…:) Thank you so much for helping me….You really have no idea how much it means to me…thanks!!!!

    What do you think of my website? It is
    my first one…any suggestions? criticisms?

    Always appreciate feedback!

    Thread Starter colbyboy

    (@colbyboy)

    Hi…It’s me again..lol….everything worked except the changing of the font….I put the code in like you said and changed it to a different size but it did not work…hmmmmm….I double checked the code this time to make sure I typed all you said and I am pretty sure I did.

    Thanks!

    Theme Author Iceable

    (@iceable)

    Hi again,

    I just double checked your site and there is actually a tiny error in the code you copy/paste to change the title’s font size: there should be no space between “h3.” and “entry-title”

    This is in your style.css file right now:

    #page-container h3. entry-title { font-size: 20px; }

    And it should be:

    #page-container h3.entry-title { font-size: 20px; }

    (I know, this sounds picky but code doesn’t leave much margin for errors!)

    Thread Starter colbyboy

    (@colbyboy)

    Wow,,,you are not kidding…thank you so much for noticing that and thank you for all your help….I truly appreciate it!

    Thread Starter colbyboy

    (@colbyboy)

    Hi….I have one more question. The menu at the very bottom , (footer) I really like it like that, but is there any way to make the font bigger on those words? Again, thank you so much for all your help!

    Theme Author Iceable

    (@iceable)

    Sure, just one more line to add to your style.css file:

    .sub-footer-right { font-size: 10px; }

    Again, 10px is the default size, so you can just change this value to anything you wish.

    Thread Starter colbyboy

    (@colbyboy)

    Thank you so much….by the time I am through with picking your brain,I too will be an expert on Boldr..lol!…appreciate all your help!

Viewing 14 replies - 1 through 14 (of 14 total)
  • The topic ‘removing title from boldr theme posts’ is closed to new replies.