d3sk1ng
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Header ErrorI’m not sure I understand…
To align the logo and the menu add this css code:
.logo {
float: left;
}Forum: Fixing WordPress
In reply to: How to edit header title font and change colour?You must type the url of the picture that you want.
For example:background-image: url("https://bgfons.com/upload/christmas_texture2689.jpg"); }
PS: you should read some css tutorial ??
Forum: Fixing WordPress
In reply to: How to edit header title font and change colour?Hi…you have to open your dashboard, then open the file “style.css” in the theme editor.
After that find this code:#site-title a { color: #333333; }
and change the “#333333” into “red” (for example):
#site-title a { color: red; }
Now you have to change the font. To do this, find the “font-family:” and change it (search on google the font that you want).
PS: press CTRL+F to find the word faster.
Forum: Fixing WordPress
In reply to: cannot go to dashboard or edit after updatedHi, there are 2 other ways to disable the plugin. Please follow this guide.
Forum: Fixing WordPress
In reply to: How to disable/dont show some plugins for Homepage?Hi, i’ve never done that but i think that you can edit the plugin in this way:
1) Open the plugin editor,then the the file of the plugin that you want to edit
2)
You can write a code like this in the plugin’s file:function curPageName() { return substr($_SERVER["SCRIPT_NAME"],strrpos($_SERVER["SCRIPT_NAME"],"/")+1); } $current_page_url = curPageName();
to obtain the url of the page (in your case, if you are in the home page you will get ‘index.php’;
3) Find the line where you can write something like this:if ($current_page_url != 'index.php') { // plugin code }
PS: maybe there’s a simpler way to do this but i don’t use wordpress for long time and so I do not know how.
Forum: Fixing WordPress
In reply to: syntax errorGood work ??
See you soon.Forum: Fixing WordPress
In reply to: syntax errorOh yes, I had to think about it.
Now we have to find your theme’s folder. Are you sure that there isn’t a folder in /bagocloc/public_html/wp-content/themes named “minimal artist”??
It’s strange…EDIT: I see that now your site works ?? What was the problem?
Forum: Fixing WordPress
In reply to: syntax errorTo install another theme you can download it and then copy the theme’s folder
in /wp-content/themes .
But after that you must enable this theme from the admin panel ??
Why can’t you log in there?Forum: Fixing WordPress
In reply to: syntax errorHi, do you edit the functions.php or another file recently?
I think you should try to delete the functions.php file and then paste there the original file that you can find here (if this is your theme)…