Airster
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Strange behavior of the website for non-loggedNo probs. Better to be safe than sorry ??
I should have been clearer in my post and asked for the “URL of the live site”.
- This reply was modified 7 years, 6 months ago by Airster.
Forum: Fixing WordPress
In reply to: Change logo dependant on pageHi Peter,
It might be easier to just create a new page template that uses the new logo. Then simply use that template for the pages that require the new logo.
This approach removes the need for the JS.
Just a thought.
Mark ??
Forum: Fixing WordPress
In reply to: Strange behavior of the website for non-loggedHi Steve,
I was just asking for a link to the site – not the admin. I would never give out that info and hence wouldn’t ask for it.
My reference to the backend was to explain to the OP why the problem could be difficult to diagnose.
Regards
Mark
Forum: Fixing WordPress
In reply to: How to remove empty space in htmls?You could try looking at index.php (or whatever the page template is) as that is the only file that has code before it call the header.
Forum: Fixing WordPress
In reply to: How to remove empty space in htmls?Sorry. I misunderstood. Where are you seeing the empty lines?
Forum: Fixing WordPress
In reply to: paragraphs in the middle, can’t put images next to it ?No problem – glad I could help. It had me stumped for a few minutes :/
Don’t forget to mark the post status as Resolved though ??
Mark
Forum: Fixing WordPress
In reply to: 403 Forbidden Access to wp-adminExcellent! Glad you got it sorted.
Mark
Forum: Fixing WordPress
In reply to: Strange behavior of the website for non-loggedAre you using any plugins that restrict content based on user Roles or similar?
Also, are the menus and pages set to Public and Published?
Do you have a link?
Also, its pretty hard to diagnose problems like this without being able to log in to the backend ??
Mark
Forum: Fixing WordPress
In reply to: paragraphs in the middle, can’t put images next to it ?Hi Jamilos,
In your example you link to, you have a # in front of the ID name:
<img id="#imgheho" src="h........
This is wrong and the ID styles are not being applied. Remove the # and you should start getting somewhere. Play with the margins and floats and you’ll get what you need.
If you need more help, just let me know.
Thanks
Mark ??
- This reply was modified 7 years, 6 months ago by Airster.
Forum: Fixing WordPress
In reply to: 2 Admins get 2 different editing resultsHi Jasnick,
If you have a look with Google Dev Tools/Firebug, can you see what CSS resources are being called when logged in as each user.
Are both accounts actually “Administrator” accounts or is one maybe an “Editor”?
Just guessing at the moment ??
Mark
Forum: Fixing WordPress
In reply to: sub menu like peta.orgHi Rob,
It looks like they are using a Secondary Menu which is located below the Primary Menu on those pages.
You will need to setup a menu area below the main menu on the page templates where you want it to appear (e.g. not the homepage) and then place the secondary menu in that location via the admin.
It’s a bit tricky to explain but the below might help:
https://premium.wpmudev.org/blog/add-menus-to-wordpress/
I’ll try and have a play later and if I get anywhere, I’ll try and post a better explanation ??
Good luck.
Mark
Forum: Fixing WordPress
In reply to: No images from a theme installed through WPWhere are you expecting to see images. I’ve had a look at the homepage but can’t really tell where images are missing.
Have you added any images to the new theme sections – some themes have specific ways of adding images.
Forum: Fixing WordPress
In reply to: website contents deleteddHi Sam.
What a nightmare!
Hope the below helps:
1) Change the usernames and password for all related logins – wp-admin, cPanel, FTP, hosting account, email, domain regsitry – everything! That should stop the ex-admin from screwing things up again.
2) Have a look at
https://web.archive.org/web/20161023131217/https://mataharifood.com/about-us/
It’s from Oct 2016 but may help if you can’t get your content back any other way.
3) It’s a long shot, but see if there are any old page revisions that can be restored.
4) Log in to mySQL and have a look through the tables for the content. Again, the ex-admin has probably made a decent job of wiping everything but it’s worth a look.
5) Speak to your hosts again because most decent hosts have some sort of backup they keep for a certain time. There may be a cost but it will probably be worth it.
I note that the theme has also been reset so he may have just done a complete re-install, in which case your hosts are your best bet.
Hope this helps in some little way, and good luck ??
Mark
Forum: Fixing WordPress
In reply to: How to remove empty space in htmls?If you look at the header.php, this is where <!DOCTYPE html> is set (usually). You should be able to delete the whitespace safely, although I don’t know what it will add to the site. I assume you just like a nice, tidy piece of code.
Don’t forget to make a copy of the file before you edit and save it – just in case ??
I know you’ve marked this as resolved and good luck with getting a better them, but just to say that I’ve had a look at the hover thing, and found this in the CSS that is working:
.blmore a:hover { background-color: #0c2b44!important; border-radius: 0!important; }
If you change the colour to the colour you want, you should have solved your problem completely.
Just for completeness…. ??
Mark