This is similar to my previous post here, but it's about slide image on home page which is missing ALT tag.
Before I continue to write about it, just to say that I'm using only one image in slider, so there is no sliding at all. So, I have changed a litle bit file featured-custom.php.
Original part of code:
<div style="position:absolute;right:0;top:0;margin:20px 0 0 0;"> <a>" class="load_slider_img"> <span class="rm_portfolio_img"><img src="<?php echo $custome_image; ?>" alt="" /></span> <span class="slider_frame"></span> </a> </div>
is replaced with this one:
<div style="position:absolute;right:0;top:0;margin:20px 0 0 0;"> <a href="http://electrical-engineering-portal.com/technical-articles"> <span class="rm_portfolio_img"><img title="EEP" src="http://electrical-engineering-portal.com/wp-content/uploads/intro-image/eep-intro-07.jpg" alt="EEP" width="600" height="340" /></span> <span class="slider_frame"></span> </a> </div>
I put exact image insted of variable $custome_image. Now my question is simliar like previous one. ALT tag is written well (alt="EEP"), but in page source it's missing (it shows Alt="").
What should be changed additionally?













