guythomas
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can i load a div id from an external site onto mine?Oh thanks WPyogi! I probably should have read that beforehand haha.
Well i will mark this as resolved as the topic that i created it under is resolved and repost it as a new question. I can’t seem to delete my comments so the mods are more than welcome to delete them =DForum: Fixing WordPress
In reply to: Can i load a div id from an external site onto mine?****EDIT****
i thought the backticks thing was a way to insert my code neatly, but apparently i didn’t use it correctly hahaMy CSS is
#outerdiv
{
width:600x;
height:2458px;
overflow:hidden;
position:relative;
}#inneriframe
{
position:absolute;
top:-325px;
left:-360px;
width:960px;
height:2783px;
}and HTML
<div id=’outerdiv’>
<iframe src=”http://www.domain.com.au/Search/rent/State/VIC/Area/East/Region/Melbourne-Region/Suburb/Burwood/?ssubs=1&searchterm=Burwood” name=”inneriframe” id=’inneriframe’ scrolling=no </iframe>
</div>Forum: Fixing WordPress
In reply to: Can i load a div id from an external site onto mine?Hi, thanks heaps for your response, i have decided to use an iframe, but i have encountered a problem.
It worked perfectly for a while but for some reason my widgets (AND my admin bar [which only displays when logged in as an admin])disappear whenever i put the iframe code on the page.
http://www.livingoffcampus.com.au/deakin/warrnambool/
but they should appear like this
http://www.livingoffcampus.com.au/deakin/geelong/its rather strange, all i am using is
<backticks><div id=’outerdiv’>
<iframe src=”http://www.domain.com.au/Search/rent/State/VIC/Area/East/Region/Melbourne-Region/Suburb/Burwood/?ssubs=1&searchterm=Burwood” name=”inneriframe” id=’inneriframe’ scrolling=no </iframe>
</div></backticks><backticks>
#outerdiv
{
width:600x;
height:2458px;
overflow:hidden;
position:relative;
}#inneriframe
{
position:absolute;
top:-325px;
left:-360px;
width:960px;
height:2783px;
}
</backticks>