Jorge
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Subscribe to RSS feeds of choiceForum: Fixing WordPress
In reply to: Drop downs not workingany idea how to get it so that when you put your cursor over “Services” the drop downs won’t overlap the word “Services” but just drop down?
There are resources available online that all of us read, simply type a keyword and hit enter. The way it looks like, you’re asking forum members to build your Website for you when your site claims to be professional Web site design whatever.
Go over to http://codex.wordpress.org for all the resources we have used for research over the years. It’s a good place to start. The same community members have spent countless hours updating the wiki for the community.
When you search on Google for resourses, type the keyword like this:
wp_list_pages site:codex.wordpress.orgYou’ll be surprised how much information is available.
Forum: Fixing WordPress
In reply to: Text editor – Custom Center Button CodeMake your own shortcode plugin and shortcode button to do it automatically. Hope this helps.
Forum: Fixing WordPress
In reply to: Help! I accidentally redirected my domain to another site!You need to go into your database to change it. Hope this helps.
Edit: From your phpmyadmin go to your WP database and click on wp_options, you can edit it there. It’s also a good time to get familiar with your DB.
Forum: Fixing WordPress
In reply to: Problem with Modifying Child ThemeYou make all of your changes to your Child Theme’s
style.cssfile.If you have
@importrules in the Child Theme’s style.css file, you’ll add your CSS after that line.There’s more information here – http://codex.wordpress.org/Child_Themes
Don’t edit the Template/Parent theme because the changes will be lost when you update the theme.
Forum: Fixing WordPress
In reply to: Problem with Modifying Child ThemeYou can use a program like XAMPP on your PC and run a WordPress installation. Edit the files locally on your PC then upload when you’re finished.
Forum: Fixing WordPress
In reply to: Problem with Modifying Child ThemeHave you attempted the changes via your cPanel’s File Manager? I like to use that if I need to fix something on the fly.
As for your problem, I had that problem too a while back during the 2.x days but I never found the reason why. Perhaps another member might have the answer.
Forum: Fixing WordPress
In reply to: Problem with Modifying Child ThemeWhat internet browser are you using?
Forum: Fixing WordPress
In reply to: mysite/wp-admin completely missing!It won’t let me delete the folder
Have you tried changing the name of the folder?
Forum: Fixing WordPress
In reply to: mysite/wp-admin completely missing!You’ll find it in your WordPress install directory under
/wp-contentfolder; then go to the/pluginsdirectory. You should see a folder named/twitter-feed-scroller.Either delete that folder or change the name so your install deactivates the plugin.
Forum: Fixing WordPress
In reply to: mysite/wp-admin completely missing!No, you’re not stupid and don’t feel that way here – we all start somewhere. To answer, if you’re on PC, follow these steps:
1. Click on “Start”
2. Click on “My Computer” or “My Network Places” (We need a Window up)
3. On the address type the following URL and log into your FTPftp://yourwebsite.com/This may be different depending on who’s doing your hosting.
3. Go to your /wp-content/plugins/ directory and delete the twitter-feed-scroller plugin
Your WP-ADMIN should be accessible then.
Forum: Fixing WordPress
In reply to: mysite/wp-admin completely missing!It’s your Twitter Feed Scroller plugin that is messing you up, delete the plugin using your FTP – Automattic has a good Twitter plugin that I use religiously.
Forum: Fixing WordPress
In reply to: HELP (Strikethroughs)I have no idea where to put it
You add the following CSS where on the last lines, you’ll see we’re keeping the original line intact.
del { color: red; } del span { color: black; }We added an
<span>element in between your<del>elements so it forces the browser to display a red line and the text can be black.<del><span>Deleted text</span></del>Like I said, since you have a lot of existing content, that will not be practical because you still have to go back and edit all the entries.
I would remedy this using jQuery to add the span element within the del tags, however, as you stated, your code knowledge is limited so, let me find some resources for you, I’ll try and post it asap.
Forum: Fixing WordPress
In reply to: HELP (Strikethroughs)@kiran, you have a lot of
<del>elements where it’s not practical to add a<span>class to them all manually. You can add it using jQuery though π —the Rabbit Hole, I tell ya’Forum: Fixing WordPress
In reply to: HELP (Strikethroughs)Try this on a demo-delete.html file:
<!DOCTYPE html> <html> <head> <title>Test</title> <style> del { color: red; } del span { color: black; } </style> </head> <body> <p>This is a string of text, and <del><span>this should be deleted</span></del>.</p> </body> </html>This is an example if you want to take it to the next level…like I said, it’s easy stuff but you might have limitations depending on the browser, etc. I haven’t tested this other than my Chrome browser. Just an FYI.