ronangelo
-
What´s the best way to learn wordpress
I agree. Just jump in and try to dissect a theme. What I did was I searched for the simplest theme I could find and tried to recreate my own using the stuff I see.
-
Issue with menu position
try position: absolute; top: 0;
-
Best Free CSS Editor
I use Notepad++, it's a very flexible text editor but it doesn't highlight a few css properties.
-
wordpress stylesheet
I also just recently started to make my very first wp theme. The code that would make my theme responsive just takes up a few lines, so I just placed it in the same style.css, so I just have one stylesheet. I don't know if that's a good i…
-
WordPress primary menu ul issue..
This part highlights every anchor under the current menu/page #main-nav .current-menu-item a { color: #aaffff; } #main-nav .current_page_item a { color: #aaffff; } Try this #main-nav .current-menu-item > a { color: #aaffff; } #…