• I am running the latest version of wordpress. I have a weird issue. I have a custom theme and in Internet explorer, the theme is broken. The footer is messed up. I have been trying to track down what is causing it to break. I have deleted the footer, and when I do that, I see the default wordpress footer underneath. The one that has the “This website is powered by wordpress” I have been looking for the code that is putting that on the page and I cannot find it anywhere. It is not in my theme files. I did a search of the entire folder and cannot find it. Do you have any clue? The site is https://www.rc-hc.com. Right now, the footer is back, if you run it in i.e, you will see my issue

Viewing 11 replies - 1 through 11 (of 11 total)
  • the first problem I see, throwing things off is here on your theme:

    <div class="main_sidebar">
    					<div class="sidebar_content">
    						<div id="text-4" class="widget"><h3 class="widgettitle">Advertising</h3><div class="content">			<div class="textwidget"><a href="https://www.rc-hobbies.com/portland"><img src="https://www.rc-hc.com/wp-content/uploads/rc.jpg" width="125" height="125" />
    
    <a href="https://www.wilsonwrites.com"><img src="https://www.rc-hc.com/wp-content/uploads/Wilson.jpg" width="125" height="125" />
    
    <a href="#"><img src="https://www.rc-hc.com/wp-content/uploads/advert.jpg" width="125" height="125" />
    
    <a href="#"><img src="https://www.rc-hc.com/wp-content/uploads/advert.jpg" width="125" height="125" />
    
    <a href="#"><img src="https://www.rc-hc.com/wp-content/uploads/advert.jpg" width="125" height="125" />
    
    <a href="#"><img src="https://www.rc-hc.com/wp-content/uploads/advert.jpg" width="125" height="125" /></div>
    		</div></div>					</div>
    				</div>

    none of your links are closed

    each of these:

    <a href="#"><img src="https://www.rc-hc.com/wp-content/uploads/advert.jpg" width="125" height="125" />

    Needs to be:

    <a href="#"><img src="https://www.rc-hc.com/wp-content/uploads/advert.jpg" width="125" height="125" /></a>

    You seem to have a lot scattered in text widgets all over. Fix every one of those, that really messed up IE

    Thread Starter cybershot

    (@cybershot)

    I will look to make those changes right now.

    what clued me in, is that your entire footer is a link. If you roll over it in IE and look at the bottom of your browser you can see it is trying to link to #

    I think closing all the a tags will fix things, if not, it’ll help us narrow down the issue

    Thread Starter cybershot

    (@cybershot)

    You did it! I cannot believe I missed that. Thank you so much! this was driving me crazy. I really appreciate your assistance!

    Thank you!

    For sure! Glad it was a simple fix! Just remember to always close everything, IE is picky about that

    Thread Starter cybershot

    (@cybershot)

    Ya, I can’t believe I missed it. I made the one mistake and then copied and pasted it into two different locations. when I fixed them all, it solved the problem. One misted tag cause that huge issue

    It’s one of the first things I check now…. I had a header run wild on me once…not a pretty thing ??

    Thread Starter cybershot

    (@cybershot)

    I usually do to. That is one of those tricks that I just forgot. I haven’t coded anything in such a long time that my skills are getting cold. I am in school for web design and I am about to graduate. But I have been spending so much time on marketing class, history 101 and all the other crap they make you take that I haven’t had the time to work on any sites. So I have been forgetting those little tidbits of information that help you solve problems like this

    Yet another reason why people should always validate their sites. ??

    https://validator.w3.org/

    here’s a tidbit for ya then! Deactivate all plugins (they throw errors a lot of the time) and run your url through here. Will help you track down any unclosed elements, etc

    EDIT: that pretty funny timing @esmi

    Thread Starter cybershot

    (@cybershot)

    True true. I wasn’t even looking in the sidebar. I thought it was a coding issue in the footer.

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘help with footer’ is closed to new replies.