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
use a code editor like Firebug in firefor to examine the code to see how it is put there. then you should be able to figure out how to remove it.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
#3
Dec 31, 2012, 02:26 PM
disfasia
89 posts · Jun 2010
Yes, I have done that but I am not sure where to edit that page specifically--at least I can't find the home page layout.
This is what I get in Firebug:
<p class="tpg-byline-class">By disfasia on September 5, 2012</p>
Which page do I edit? I really don't have days to spend on this and it seems to me I edited this six months ago and my changes get wiped out with every update.
Honestly, I am due to have a baby in a few days and would really like to fix this now. I am exhausted and really tired of refixign the same things over and over. Can't there be an easier interface?
I went into Main Index Template and and css edited out the info--didn't work. Please let me know which page to edit. I really want to just do fix this now. Please let me know which page to edit.
Thanks for your help!
Last edited by disfasia; Dec 31, 2012 at 03:03 PM.
#4
Dec 31, 2012, 04:54 PM
lmilesw
10,176 posts · Jul 2009
Central New York State USA
What about the other "byline" boxes in the Edit Post/Page info section?
__________________ ~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.
#5
Dec 31, 2012, 11:23 PM
disfasia
89 posts · Jun 2010
They are all empty. Yet as you can see it shows in my main page. Why is this?
Thanks again.
#6
Dec 31, 2012, 11:57 PM
lmilesw
10,176 posts · Jul 2009
Central New York State USA
Since you have
HTML Code:
<p class="tpg-byline-class">By disfasia on September 5, 2012</p>
your selector would be .tpg-byline-class so you would add the following to the CSS Inserts box to not display that item.
HTML Code:
.tpg-byline-class {
display: none;
}
or perhaps
HTML Code:
.tpg-byline-class {
display: none !important;
}
Sometimes the !important is needed to override the CSS that is in place.
__________________ ~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.
#7
Jan 1, 2013, 05:21 AM
disfasia
89 posts · Jun 2010
The problem was that I was putting the right code :
.tpg-byline-class {
font-size:0px;
}
in the wrong place. It doesn't work to insert it into any of Atahualpa's style sheets.
I did find the solution by finding a stylesheet for the tpg get posts style.css and it works.