Farook Kholwadia
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Textarea CSS manipulationHi
glad it worked.
In the browser inspector it was showing your custom css was a child to the parent css and so was being diregarded. Just like real parents!
- This reply was modified 6 years, 10 months ago by Farook Kholwadia.
Forum: Networking WordPress
In reply to: Can visit homepage but not subpages in MU siteAre you struggling with a menu, best if you can elaborate on the problem.
If menu, this may help:
https://justintadlock.com/archives/2010/06/01/goodbye-headaches-hello-menusForum: Networking WordPress
In reply to: Loading TimeHi
did you want to run it through google as it gives suggestions on how to improve after analyzing?
Forum: Fixing WordPress
In reply to: Link to Wrong PageIt appears to be an attachment page.
The below link explains a bit more:
https://www.google.co.uk/amp/s/www.hongkiat.com/blog/wordpress-attachment-pages/amp/The below link explains how to overcome:
https://woorkup.com/stop-google-indexing-wordpress-image-attachment-page/Please advise if I’ve misunderstood.
did you recently add a plugin that failed?
If you did, remove it via FTP and see if that loads the missing areas.
Forum: Fixing WordPress
In reply to: Need help with botched restoreJust guessing but these are the blog posts you’re referring to:
https://www.unitedriggingny.com/blog/and this is your sign in:
https://www.unitedriggingny.com/wp-login.phpYou’ve explained quite a bit but perhaps I’ve misunderstood, can you elaborate on the main problem you’re having?
I’m a little confused as you seem to have the blog posts but also suggest cannot access WordPress through sign in, of course, I may be misinterpreting your query for which I do apologise.
Forum: Fixing WordPress
In reply to: Permalinks problemsI’m only guessing but
are you using a category for the post?you should have a separate post category, else it will look for the category in shop and unless you have a product category identical it will not find it.
this post https://dns.rockybeachstudio.de/november-2017-regal-von-katja-jobs/ states posted in Kundenfotos and the link is looking for Kundenfotos in shop?
You may find the below helpful:
https://docs.woocommerce.com/document/removing-product-product-category-or-shop-from-the-urls/Forum: Plugins
In reply to: [Contact Form 7] Textarea CSS manipulationcheck in inspector:
styles:
https://zackig.info/wp-content/themes/bridge/css/stylesheet.min.css?ver=4.9.2input.wpcf7-form-control.wpcf7-date, input.wpcf7-form-control.wpcf7-number, input.wpcf7-form-control.wpcf7-text, select.wpcf7-form-control.wpcf7-select, textarea.wpcf7-form-control.wpcf7-textarea {
width: 100%;
}https://zackig.info/wp-content/themes/bridge/css/custom_css.css?ver=1517257567
.wpcf7-form textarea {
width: 80%;
}html:
<textarea name=”your-message” cols=”40″ rows=”10″ class=”wpcf7-form-control wpcf7-textarea” aria-invalid=”false”></textarea>try
textarea.wpcf7-form-control.wpcf7-textarea
{
background-color: #fff;
color: #000;
width: 50%;
}
instead of
.wpcf7 textarea
{
background-color: #fff;
color: #000;
width: 50%;
}P.S. Probably great on Desktop and tablet but you may want to avoid making the width too small as it may not be what you want on other media such as mobile/iPhone.
- This reply was modified 6 years, 10 months ago by Farook Kholwadia.