JungleSpace.net
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Styling RSS sidebar widget – Find overide csslist-style-position is an attribute for the UL element not the A element.
You can refer here.
https://www.w3schools.com/cssref/pr_list-style-position.asp
The CSS file has the UL list-style set to none. Even then setting the list-style-position attribute will not have any effect.
Forum: Fixing WordPress
In reply to: Styling RSS sidebar widget – Find overide cssIf it is style.css, which line did you put your modification at?
It is best to put it somewhere below of the file. Please paste your modifications here.
Forum: Fixing WordPress
In reply to: New install WP 3.4.2 – can't set permalinksDo turn on the WordPress debug mode.
Forum: Fixing WordPress
In reply to: Styling RSS sidebar widget – Find overide cssMay I know which CSS file do you edit?
Forum: Installing WordPress
In reply to: Unable to log into dashboard after installI could not find the same line in wp-admin/admin.php. In addition, the default WordPress does not have an admin.php file in the WordPress top-level folder.
That is why there is an error when a file was trying to access admin.php at the the top level folder.
Perhaps you could point us to the file path where you found the line.
Reference:
https://github.com/WordPress/WordPress/blob/3.4-branch/wp-admin/admin.phpForum: Fixing WordPress
In reply to: New install WP 3.4.2 – can't set permalinksTry this debug code in the wp-includes/rewrite.php file.
function set_permalink_structure($permalink_structure) { if ( $permalink_structure != $this->permalink_structure ) { update_option('permalink_structure', $permalink_structure); $this->init(); //Start Debug echo '<pre>'; print_r($this->permalink_structure); echo '</pre>'; //End Debug do_action('permalink_structure_changed', $this->permalink_structure, $permalink_structure); } }
Forum: Fixing WordPress
In reply to: Styling RSS sidebar widget – Find overide cssUse the below. The anchor tag is having the rsswidget class.
#sidebar2 a.rsswidget { display:block }
Forum: Fixing WordPress
In reply to: Webroot – wordpress site hackedCould not visit your site. It was down.
You might want to check whether your plugins or themes could be exposed to security vulnerabilities or malware.
Backup your WordPress folder and database. Use a clean WordPress folder to reinstall.
Forum: Fixing WordPress
In reply to: Google malware message from another domain?Did you happen to download the theme from the WordPress themes directory?
Would like to give notice to WordPress about the issue.
Forum: Installing WordPress
In reply to: Error establishing a database connectionIf you are a customer of wordpress.com, they have a support team for your issues.
https://en.support.wordpress.com/contact/
Here the www.ads-software.com support forum are geared more towards the self-hosted WordPress sites.
There are limitations on the wordpress.com which we may not be able to help you with.
Forum: Installing WordPress
In reply to: Error establishing a database connectionIf you have installed WordPress on your computer, you could remove the theme folder from your computer.
Forum: Fixing WordPress
In reply to: How to add static content/text box to a pageIt probably has something to do with your theme files. Do try contacting your designer.
Forum: Fixing WordPress
In reply to: Renamed blog permalinks and have loads of 404sAre your page contents hard-link with old URLs?
Forum: Fixing WordPress
In reply to: Recover page content for specific pagesYeah you can search using page id, page title or if you remembered any specific paragraph in your content.
Forum: Fixing WordPress
In reply to: how make site faster ?You might look into hosting your images with a CDN service. There’s some plugins which can connect you with a CDN service.