mattoman
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Ignis] Issue with the Inline StylesHi Roman,
I found the issue. Basically the code below:
.main-navigation { display: none; } .mobile-nav, .btn-menu { display: block; }was underneath
@media only screen and (max-width: 1199px).I moved this to be below
@media only screen and (max-width: 1024px)and it fixed the problem.Great theme.
Cheers,
Matt.
Forum: Fixing WordPress
In reply to: Hacked by Hmei7Hi,
This guy hacked the shit out of my website. Luckily it had only just gone live so I was able to restore quite easily by moving it all to a new database… I discovered the reason he was able to hack me was because the passwords in use were extremely easy to crack.
Lesson Learned: Make sure you set extremely difficult MySQL database passwords and the same goes for WordPress.
I actually would thank Hmei7 as he alerted me to some pretty weak security in my website.
All the best.
Forum: Fixing WordPress
In reply to: Featured Post with a thumbnail and breif textNevermind..
I used the get_the_post_thumbnail and everything worked!
Forum: Themes and Templates
In reply to: Advice on themeThere are quite a few dropdown menu plugins if you want to take that route. Personally, I’ve tended to go for the CSS approach which pushes the sub-menu off the page until the parent ul block has focus.
I’d like to see some examples or maybe you could point me in the right direction of a tutorial that uses drop down with wordpress.
Forum: Themes and Templates
In reply to: Advice on themeThanks, I didn’t realise it was easy as modifying the css for the text transform.. Don’t know why i didn’t think of this! Im still not sure how i could add a dropdown menu though.. I guess ill need to create a new page under the page i want the dropdown and go from there?