There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021
[SOLVED] Removing Comments notification from the BFA Subscribe Widget
#1
Jan 20, 2013, 08:46 AM
realsol
21 posts · Jan 2013
I am having a heck of a time figuring out what CSS code to put in to remove the comments section from the widget. Can anyone help?
#2
Jan 20, 2013, 01:32 PM
lmilesw
10,176 posts · Jul 2009
Central New York State USA
What do you mean by "comments section in the widget"? Along with clarifying that a link to the site will be necessary.
__________________ ~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
#4
Jan 20, 2013, 02:50 PM
realsol
21 posts · Jan 2013
Again, thanks for getting back with me on a Sunday. I figured I could use Display: none;, but I can't figure out what the CSS name is. I have used every combination I can think of after looking at FireFly, but can't figure this one out.
#5
Jan 20, 2013, 04:05 PM
lmilesw
10,176 posts · Jul 2009
Central New York State USA
Without knowing exactly what you don't want to show and a link to your site we would just be guessing.
__________________ ~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
#6
Jan 20, 2013, 06:10 PM
realsol
21 posts · Jan 2013
The current page I am talking about is at http://eao2.rdgriffin.com/?page_id=32. It is the comments feed I am trying to remove. Firefly says it is 'table.subscribe td.comment-text' so I am entering table.subscribe td.comment-text(display: none in the CSS inserts to no avail. I have tried a number of things but just can't figure out what CSS I am suppose to enter find this like firefly does.
Thanks.
#7
Jan 20, 2013, 06:35 PM
lmilesw
10,176 posts · Jul 2009
Central New York State USA
When I use Firebug this is what I come up with.
HTML Code:
#bfa_subscribe .comment-text {
display: none;
}
__________________ ~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
#8
Jan 20, 2013, 08:48 PM
realsol
21 posts · Jan 2013
That did the trick. Thanks.
But I have to ask, where in FireBug did you see this? If I copy the CSS and paste it, I don't see it at the end, nor when I look in the Style Panel.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
#10
Jan 20, 2013, 09:01 PM
lmilesw
10,176 posts · Jul 2009
Central New York State USA
Also you have to understand CSS syntax and hierarchy to some extent. It's not just a copy paste situation. You have to know about classes and IDs and how they "cascade". I have used w3schools.com to figure out CSS syntax and still do at times. Firebug also has a website to learn that tool.
__________________ ~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
#11
Jan 20, 2013, 09:12 PM
realsol
21 posts · Jan 2013
Thanks. I swear to god that firebug did not display that all day but there it is plain as day. No more coding at 4 am.