WP Libra
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Menu HeaderIf you say exactly what you want changed me or someone else might tell you how to do it.
Forum: Fixing WordPress
In reply to: How to edit home pageDoes your theme support WordPress_Menu_User_Guide?
Forum: Fixing WordPress
In reply to: Menu HeaderYes if you understand HTML/CSS. But there aren’t theme options that you can just put in a new color or style.
Forum: Fixing WordPress
In reply to: Having a lot of trouble- please help :(Have a link to your site?
Do you see it displayed correctly on the right side on the demo page?
http://demo.wordspop.com/fotofolio-landscape/category/blog/The sidebar is only for the blog. Also what browser/version are you using?
Forum: Fixing WordPress
In reply to: Locked out of /wp-adminRename the plugin folder to deactivate all plugins.
Can find steps here
Let me know if that clears it up.
Forum: Fixing WordPress
In reply to: Locked out of /wp-adminHere is the 4 step process which seems to work best. Looks like you did 1 and 2. Try 3 wait you wait for 4.
1. Try adding this line to your wp-config.php file:
define(‘WP_MEMORY_LIMIT’, ’64M’);2. If you have access to your PHP.ini file, change the line in PHP.ini
If your line shows 32M try 64M:
memory_limit = 64M ; Maximum amount of memory a script may consume (64MB)3. If you don’t have access to PHP.ini try adding this to an .htaccess file:
php_value memory_limit 64M4. Talk to your host.
Forum: Fixing WordPress
In reply to: Add Custom Squeeze page to siteIf you don’t know HTML/CSS then I would recommend finding a squeeze page plugin that can do all the design part for you.
Since most are paid plugins I won’t recommend one so here you go. 🙂
https://www.google.com/search?q=wordpress+squeeze+page+plugin
Forum: Fixing WordPress
In reply to: Undeletable ImageI don’t see the image in firefox.
Can you tell me exactly where it is on what page?
Forum: Fixing WordPress
In reply to: Login with correct password redirects me to login login againMeans you can now log into your site and something wrong happened during the transfer. 🙂
As for details and how to fix it, I don’t know.
Forum: Fixing WordPress
In reply to: Can't edit posts or pages on new installHave you deactivated all your plugins and checked it?
Forum: Fixing WordPress
In reply to: adding text subtitle under Logo .pngYou can edit the HTML and CSS, yes.
Go to Appearance -> Editor and you should see the files on the right side.
style.css should be all your CSS rules and header.php should contain the logo where you can add HTML below your logo.
But like Andrew said it is a commercial theme that we can’t see the code so can’t give you an exact answer.
Forum: Fixing WordPress
In reply to: Login with correct password redirects me to login login againAfter you login and it bounces back try going to yoursite.com /wp-admin/post-new.php
Just paste that in after your URL. Does it go back to login or the add new post page?
Forum: Fixing WordPress
In reply to: Can't format fontCan you point me to what post and what word you added this style to?
Forum: Fixing WordPress
In reply to: Sidebar font/header size changeThere isn’t a rule for changing that element. But you can add one.
.widget-title h2 { font-size: 12px; }Just add that in your .css file
Forum: Fixing WordPress
In reply to: Changing Functions of Menu TabAdd a Custom Link
Name – MENU NAME
URL – #Then put your pages below it. When someone clicks on MENU NAME it won’t go anywhere.
This is how I deal with this issue.