sk_tamilan
Forum Replies Created
-
just remove the margin top and margin -bottom on your style.css file for body .site
change this
body .site { padding: 0 40px; padding: 0 2.857142857rem; margin-top: 48px; margin-top: 3.428571429rem; margin-bottom: 48px; margin-bottom: 3.428571429rem; box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3); }
to
body .site { padding: 0 40px; padding: 0 2.857142857rem; box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3); }
Forum: Themes and Templates
In reply to: Show Meta Value when querying meta keyIt looks like there was something wrong with my client side of the program topic resolved
the link you have provide to your website does not work
Forum: Themes and Templates
In reply to: Theme Imbalance: Put all categories in the same rowYou will need to modify the css for the category section
If you wish to center the nav have a look at this : –
https://csswizardry.com/2011/01/create-a-centred-horizontal-navigation/
just as the above example make your nav list look like this :
<ul> <li>Video</li> <li>Sound</li> <li>Word</li> <li>Image</li> </ul>
Forum: Fixing WordPress
In reply to: Persistent Admin HacksThese two plugins have helped me greatly from hacking in the past:-
https://www.ads-software.com/plugins/wp-security-scan/
This will tell you the vulnerabilities found in your site
and finally
https://www.ads-software.com/plugins/limit-login-attempts/
This limits hackers from doing brute force attack to your website.
Hope this helps
Forum: Fixing WordPress
In reply to: Fatal error! I can't open the web site anymoreyou have two options remove the get_query_template() function from theme.php file. It is isn’t there by default so you don’t need it there. Just go the theme.php file and remove the function which looks similar to this :-
function get_query_template( $type, $templates = array() ) {
$type = preg_replace( ‘|[^a-z0-9-]+|’, ”, $type );if ( empty( $templates ) )
$templates = array(“{$type}.php”);return apply_filters( “{$type}_template”, locate_template( $templates ) );
`}or just download wordpress again and restore just the wp-includes folder.
Forum: Fixing WordPress
In reply to: changing in permalinkand maybe then somebody will be able to look closer into this for you
Forum: Fixing WordPress
In reply to: changing in permalinkhttps://10.0.0.114/ is a local ip, its being hosted on your machine rather than on the web, or provide your public ip address in order for us to access this otherwise only you and people within your local network will be able to access these files