I followed MrCrayfish's tutorial for adding a basic item into 1.7.10, (the whole reason for going back a minecraft version for modding is because it's so much easier to add Blocks/Items into it), and it's work thus far, but I have hit a wall. He explained how to implement textures and I did what he did. Instead of me booting up and seeing my texture, I see the "missing texture" texture.
Here is the code I have for the Item:
itemCythar = new ItemCythar().setUnlocalizedName("ItemCythar").setTextureName("EMod:itemcythar");
GameRegistry.registerItem(itemCythar, itemCythar.getUnlocalizedName().substring(5));
Screenshot of the texture not working, aswell as package explorer showing where I have the texture:
EDIT: I have solved this issue, and I face palmed very hard because it was the most obvious fix. Just look at my second screenshot, as you can see I have the "textures" folder, right? Well, I don't have the "items" folder inside of it, which is where my texture is supposed to be located.