Wordpress Themes - WP Forum at BFA
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

Wordpress Themes - WP Forum at BFA » WordPress Themes » Atahualpa 3 Wordpress theme » Sidebars & Widgets »

[SOLVED] Image in text widget is repeating?


  #1  
Old Aug 11, 2011, 03:47 PM
49Monsters's Avatar
49Monsters
 
41 posts · Aug 2010
MN
Hi folks, been away from wordpress and the theme for a long time. Looked at my "for fun" site the other day and have some problems text widget in the sidebar.

Site is : 49monsters.com

You can see one image on the right and one on the left are showing up three time? I have changed nothing.

I'm on WordPress 3.21, ATA 3.5.3

Thaks for the help.
Guy
__________________
"Despair is only for those who see the end beyond all doubt"
-Gandalf
  #2  
Old Aug 11, 2011, 04:32 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
(love the cartoons)

very odd, I see the multiple images in Safari but not in FireFox

what browser are you using?
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #3  
Old Aug 11, 2011, 05:26 PM
49Monsters's Avatar
49Monsters
 
41 posts · Aug 2010
MN
Hey JD,
I see them in both Safari and Firefox.
__________________
"Despair is only for those who see the end beyond all doubt"
-Gandalf
  #4  
Old Aug 11, 2011, 08:05 PM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
How did you place those images there? In a widget? With what code?
__________________
~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  
Old Aug 11, 2011, 09:04 PM
49Monsters's Avatar
49Monsters
 
41 posts · Aug 2010
MN
In a Text widget. They worked fine for months. Then all the sudden they started showing three. Started a couple weeks ago I believe.

Here is the code for the right side bar:

Code in text widget:
Code:
<a id="Point_monster" </a>
Code in ATO, HTML/CSS insert:
Code:
/*---------------- POINT_MONSTER CSS - START --------------*/
#Point_monster
{
z-index: 4; position: relative; float: left; width: auto; 
margin-right: 0px; 
margin-left: 0px;
margin-top: 70px;
  display: block;
  width: 150px;
  height: 203px;
  background: url("./wp-content/themes/atahualpa353/images/Point_monster.png") no-repeat 0 0;
}

#Point_monster:hover
{ 
  background-position: 0 -203px;
}

#Point_monster span
{
  display: none;
}
/*------------------------------------------------------------*/
__________________
"Despair is only for those who see the end beyond all doubt"
-Gandalf
  #6  
Old Aug 11, 2011, 09:15 PM
49Monsters's Avatar
49Monsters
 
41 posts · Aug 2010
MN
I did a little investigating and ran into this...

The "LEFT" sidebar has five images (the pencil sketches)

Code:
<a id="Smile" </a>

<a id="Thumb" </a>

<a id="Slug" </a>

<a id="Bomb" </a>

<a id="Goose_1" </a>
Right now, Goose_1 is last and it shows three times. If I delete it, then Bomb shows three. Whichever image is last will repeat.
__________________
"Despair is only for those who see the end beyond all doubt"
-Gandalf
  #7  
Old Aug 11, 2011, 10:11 PM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
It would seem like the code should be
HTML Code:
<a id="Smile"></a>
or
HTML Code:
<div id="Smile"></div>
There is no close the the opening <a
__________________
~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.

Last edited by lmilesw; Aug 12, 2011 at 06:57 AM.
  #8  
Old Aug 12, 2011, 05:46 AM
49Monsters's Avatar
49Monsters
 
41 posts · Aug 2010
MN
I deleted the <a/... no change.
__________________
"Despair is only for those who see the end beyond all doubt"
-Gandalf
  #9  
Old Aug 12, 2011, 05:51 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
what version of the browsers are you using?
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #10  
Old Aug 12, 2011, 06:00 AM
49Monsters's Avatar
49Monsters
 
41 posts · Aug 2010
MN
Safari 5.1

FireFox 5.01

Mac OS 10.6.8
__________________
"Despair is only for those who see the end beyond all doubt"
-Gandalf
  #11  
Old Aug 12, 2011, 06:14 AM
49Monsters's Avatar
49Monsters
 
41 posts · Aug 2010
MN
When I look at it in Firebug, it shows:

Code:
<div id="text-6" class="widget widget_text">
<div class="textwidget">
<a id="Point_monster"></a>
</div>
<a id="Point_monster"> </a>
</div>
<a id="Point_monster"> </a>
__________________
"Despair is only for those who see the end beyond all doubt"
-Gandalf
  #12  
Old Aug 12, 2011, 06:44 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
go look at your text widget, you don't have the closing </a>
HTML Code:
<!-- Right Sidebar -->
<td id="right">
	<div id="text-6" class="widget widget_text">			
                <div class="textwidget">
                    <a id="Point_monster" >            <======== no </a> it should be here
                </div>
	</div>
</td>
<!-- / Right Sidebar -->
(edited to make it readable
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #13  
Old Aug 12, 2011, 07:00 AM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
There was a typo in my post number 7 and may have caused confusion. I didn't have the </a> within the code box. Sorry.
__________________
~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.
  #14  
Old Aug 12, 2011, 07:23 AM
49Monsters's Avatar
49Monsters
 
41 posts · Aug 2010
MN
YEP!
That did it!
Thanks Guys.
__________________
"Despair is only for those who see the end beyond all doubt"
-Gandalf

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
Text widget image showing up on pages Vanessa_S Sidebars & Widgets 3 Apr 3, 2011 06:35 AM
Text Widget/Box over the Header Image akinfo Header configuration & styling 3 Nov 21, 2010 03:35 PM
[SOLVED] Repeating Backround Image for Menu Bar ortixia Page & Category Menu Bars 3 Sep 21, 2010 02:20 PM
repeating background image not showing up in 3.4.2 sirabi Header configuration & styling 1 Sep 13, 2009 11:12 AM
Sidebar repeating background image JCCrgb Sidebars & Widgets 4 May 17, 2009 08:31 PM


All times are GMT -6. The time now is 07:33 PM.


Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.