Joomla 2.5 SEF issues - Joomla! Forum - community, help and support
i have images in article on site. images load, others don't.
sef on.
the images load simple paths, ie:
the images not load rollovers, ie:
when check source code simple path becomes:
with addition of "/site4/" path, rollover paths stay same.
could explain why isn't happening rollover images?
i've lost hours trying figure out, i'd appreciate help!
sef on.
the images load simple paths, ie:
code: select all
<img src="images/slider/slider3.jpg" width="100px" height="20"/>the images not load rollovers, ie:
code: select all
<a href="#" rel="toggle[slider3]" data-openimage="images/slider/open.jpg"
data-closedimage="images/sliders/bottom.jpg"><img src="images/slider/closed.jpg"
width="100px" height="20" border="0" />when check source code simple path becomes:
<img src="/site4/images/slider/slider3.jpg" width="100px" height="20"/>
with addition of "/site4/" path, rollover paths stay same.
could explain why isn't happening rollover images?
i've lost hours trying figure out, i'd appreciate help!
try this. change
to
code: select all
<a href="#" rel="toggle[slider3]" data-openimage="images/slider/open.jpg"
data-closedimage="images/sliders/bottom.jpg"><img src="images/slider/closed.jpg"
width="100px" height="20" border="0" />to
code: select all
<a href="#" rel="toggle[slider3]" data-openimage="/images/slider/open.jpg"
data-closedimage="/images/sliders/bottom.jpg"><img src="/images/slider/closed.jpg"
width="100px" height="20" border="0" />
Comments
Post a Comment