![]() |
|
||||||
|
|
Thread Tools | Display Modes |
|
#1
|
||||
|
||||
|
Using Streamline child theme:
I did check the W3C Markup Validation Service on ip-192.com and get 2 errors. Error Line 243, Column 6: end tag for element "div" which is not open </div> <div id="footer-widgeted"> This Error belongs to an empty sidebar-bottom-left div, which is correct defined. Error Line 280, Column 6: end tag for element "div" which is not open </div> <div id="sidebar-bottom-left"> </div> This Error closes a widget_nav_menu. I see unclosed </body> and </html> tags at the bottom of the page. This problem happens at Streamline child home pages with different customizations. Any hint how I can solve this would be very much appreciated.
__________________
www.ip-192.com |
|
#2
|
||||
|
||||
|
start by checking any text widgets you have. Those are the most likely place for bad HTML. What changes did you make to the home.php file?
__________________
Nick "Fred and/or George Weasley" Croft Designs by Nick the Geek @Nick_theGeek on Twitter Make web design easier, get FireBug for FireFox Want to learn more about Genesis? Check out my Genesis Explained Series |
|
#3
|
||||
|
||||
|
Please see the content of the home.php below. I don't recall any changes on my end.
PHP Code:
The 4 footers are served by custom menus. I checked the the other widgets, but couldn't find any unclosed items. I don't understand the unclosed </body> and </html> tags at the bottom of the page.
__________________
www.ip-192.com |
|
#4
|
||||
|
||||
|
what edits have you made?
__________________
Nick "Fred and/or George Weasley" Croft Designs by Nick the Geek @Nick_theGeek on Twitter Make web design easier, get FireBug for FireFox Want to learn more about Genesis? Check out my Genesis Explained Series |
|
#5
|
||||
|
||||
|
none
__________________
www.ip-192.com |
|
#6
|
||||
|
||||
|
Then it has to be content, either in the post or via a text widget.
__________________
Nick "Fred and/or George Weasley" Croft Designs by Nick the Geek @Nick_theGeek on Twitter Make web design easier, get FireBug for FireFox Want to learn more about Genesis? Check out my Genesis Explained Series |
|
#7
|
||||
|
||||
|
I have the same 2 (only) errors on all Streamline child home pages with different child-css, widgets, and one site has no posts and widgets at all on the front page. I am clueless where to start.
__________________
www.ip-192.com |
|
#8
|
||||
|
||||
|
Then something was changed in the theme files. What is in the functions.php file
__________________
Nick "Fred and/or George Weasley" Croft Designs by Nick the Geek @Nick_theGeek on Twitter Make web design easier, get FireBug for FireFox Want to learn more about Genesis? Check out my Genesis Explained Series |
|
#9
|
||||
|
||||
|
function.php:
PHP Code:
__________________
www.ip-192.com |
|
#10
|
||||
|
||||
|
ok what is in your footer-widgeted.php file?
__________________
Nick "Fred and/or George Weasley" Croft Designs by Nick the Geek @Nick_theGeek on Twitter Make web design easier, get FireBug for FireFox Want to learn more about Genesis? Check out my Genesis Explained Series |
|
#11
|
||||
|
||||
|
footer-widget.php
PHP Code:
__________________
www.ip-192.com |
|
#12
|
||||
|
||||
|
topnav.php?
__________________
Nick "Fred and/or George Weasley" Croft Designs by Nick the Geek @Nick_theGeek on Twitter Make web design easier, get FireBug for FireFox Want to learn more about Genesis? Check out my Genesis Explained Series |
|
#13
|
||||
|
||||
|
topnav.php:
PHP Code:
__________________
www.ip-192.com |
|
#14
|
||||
|
||||
|
sidebar-bottom.php?
__________________
Nick "Fred and/or George Weasley" Croft Designs by Nick the Geek @Nick_theGeek on Twitter Make web design easier, get FireBug for FireFox Want to learn more about Genesis? Check out my Genesis Explained Series |
|
#15
|
||||
|
||||
|
Good morning, Nick!
sidebar-bottom.php: PHP Code:
__________________
www.ip-192.com |
|
#16
|
||||
|
||||
|
I believe that is all the theme files. Unless something was changed in Genesis it has to be coming from a plugin or content.
__________________
Nick "Fred and/or George Weasley" Croft Designs by Nick the Geek @Nick_theGeek on Twitter Make web design easier, get FireBug for FireFox Want to learn more about Genesis? Check out my Genesis Explained Series |
|
#17
|
||||
|
||||
|
You may like to check this site. I has less content on the home page and shows the same W3C symptoms. I did eliminate footers, sidebars, and posts. It shows the slider and some entries placed in the simple hooks section.
__________________
www.ip-192.com |
|
#18
|
||||
|
||||
|
I went through line by line and did find an extra </div>
You are editing the footer of both sites, how are you changing the footer?
__________________
Nick "Fred and/or George Weasley" Croft Designs by Nick the Geek @Nick_theGeek on Twitter Make web design easier, get FireBug for FireFox Want to learn more about Genesis? Check out my Genesis Explained Series |
|
#19
|
||||
|
||||
|
I use the Genesis Footer Hook. Execute PHP on this hook? = yes, i.e. Gemini:
PHP Code:
__________________
www.ip-192.com |
|
#20
|
||||
|
||||
|
somewhere there is a </div> being added. I see other code added where I wouldn't normally see it, some <scripts> in #header and other places.
Try disabling all plugins and test.
__________________
Nick "Fred and/or George Weasley" Croft Designs by Nick the Geek @Nick_theGeek on Twitter Make web design easier, get FireBug for FireFox Want to learn more about Genesis? Check out my Genesis Explained Series |
|
#21
|
||||
|
||||
|
I tried to figure out exactly this where the extra </div>’s coming from. Since it is on each Streamline home page (with different plugins, widgets, posts/no posts, with/without footer widgets), I thought Genesis parent theme could be the source, but I don’t know. I did upgrade Genesis to the latest version 1.8.2.
__________________
www.ip-192.com |
|
#22
|
||||
|
||||
|
If it is only on the home page my first guess would be the home.php file, but you posted that and I went through it. It is all correct.
If it were the parent files then it would affect other pages, not just the home page. So it cannot be the parent files, not unless they were edited with an is_home/is_front_page() conditional that changes the output only on the home page. This means it has to be related to content. Even if it is different plugins there has to be something common tying it together.
__________________
Nick "Fred and/or George Weasley" Croft Designs by Nick the Geek @Nick_theGeek on Twitter Make web design easier, get FireBug for FireFox Want to learn more about Genesis? Check out my Genesis Explained Series |
|
#23
|
||||
|
||||
|
I did check some other pages/posts with W3C, but it found these errors on the home page only.
__________________
www.ip-192.com |
|
#24
|
||||
|
||||
|
it still points to content or plugins. The other possibilities have been eliminated.
__________________
Nick "Fred and/or George Weasley" Croft Designs by Nick the Geek @Nick_theGeek on Twitter Make web design easier, get FireBug for FireFox Want to learn more about Genesis? Check out my Genesis Explained Series |
|
#25
|
||||
|
||||
|
The previous/next buttons of the Smart Slideshow Widget are responsible for the errors; without them the sites pass the test.
Thanks again NicktheGeek, please feel free to close the thread.
__________________
www.ip-192.com |
|
#26
|
||||
|
||||
|
You're welcome.
Since this is resolved I'm going to close this thread.
__________________
Nick "Fred and/or George Weasley" Croft Designs by Nick the Geek @Nick_theGeek on Twitter Make web design easier, get FireBug for FireFox Want to learn more about Genesis? Check out my Genesis Explained Series |
| Tags |
| css, streamline |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Cannot Solve Featured Content Gallery Problem | davidhamilton | General Discussion | 8 | 01-20-2010 04:48 PM |
| changed post title - how to redirect ..or otherwise solve? | speedmouse | General Discussion | 7 | 10-25-2009 11:24 AM |
© Copyright 2012 Copyblogger Media LLC · StudioPress™ is a trademark of Copyblogger Media LLC
Privacy Policy | Refund Policy | Terms of Service | Affiliate Program | Contact Us