ModularBase
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Organize categoriesIf you don’t mind using a plugin, this one is great – http://ww.wp.xz.cn/plugins/my-category-order/ – you can drag/drop your category order.
Forum: Fixing WordPress
In reply to: how to resize site logo on the Magazine Basic theme?“I don’t know where to find this code to change it. It’s not in the header code.”
I offered this only for you to see where your image was, which is why I said to remove it after. Any changes, like Andrew Nevins said, should be done in a Child Theme or with a Custom CSS plugin.
Forum: Themes and Templates
In reply to: twenty ten background link“then i must make the entire page and footer black?”
It will make everything black.
“Or can i also make a link on the background?”
No, it is not within the wrapper area, it is the entire width of the window and is “behind” the wrapper.
You could make the header and main white and the footer black, but do not do this to the 20-10 theme. Create a Child Theme or install a Custom CSS plugin http://ww.wp.xz.cn/plugins/search.php?q=custom+css&sort=
Forum: Themes and Templates
In reply to: twenty ten background linkIn 20-10, the entire wrapper is white and the footer is inside it, which is why you see white on either side when making the footer black.
Forum: Fixing WordPress
In reply to: how to resize site logo on the Magazine Basic theme?Your image is the same size. It is centered in this div with alot of white space around it:
#site-logo { display: inline-block; padding: 30px 20px 0; }if you find the above in your css and add the following temporarily, you will see where inside the div your image is:
#site-logo {background:pink; display: inline-block; padding: 30px 20px 0; }After seeing where the image is located, remove the
background:pink;Forum: Fixing WordPress
In reply to: How To Add Robots Meta Tag In HeaderPut them after the title in your theme’s header.php
Another reference: https://support.google.com/webmasters/answer/79812?hl=enIf you have cPanel access, this will tell you how through your database – http://codex.ww.wp.xz.cn/Resetting_Your_Password#Through_phpMyAdmin
Also: http://support.godaddy.com/groups/web-hosting/forum/topic/lost-wordpress-admin-password/
Forum: Fixing WordPress
In reply to: Text editing capability?Home Page is your index.php file in Appearance > Editor.
For the Page, you can go to Pages. Click on the page and it opens in the Visual/Text Editor. You can select the text and delete it, then add your own.
To change its Title, go to Pages and hover over the page name (don’t click it). Under you will see “Quick Edit”.
Click this and change the Title and the slug underneath. The slug must have dashes “-” between each word and match the title. When done, click “Update” button on right.Forum: Fixing WordPress
In reply to: How To Add Robots Meta Tag In HeaderAn excellent article on meta tags here: http://www.metatags.org/meta_name_robots
(…not affiliated in any way with this site)
Forum: Themes and Templates
In reply to: [Mantra] How to change unordered list image bullet?You need the entire path to your image from “/wp-content/uploads/…” on.
You can find this path by selecting “edit” under the image in the Media Library. It will be on the right side of the edit window.You should also have “list-style-position” (outside or inside). You may have to add some “margin-left”, as well.
Forum: Fixing WordPress
In reply to: Amount of text used in ExcerptsYou shouldn’t add to any part of your main theme.
You should use a child theme: http://codex.ww.wp.xz.cn/Child_ThemesBut, I think a simpler solution would be this plugin: http://ww.wp.xz.cn/plugins/advanced-excerpt/
Forum: Fixing WordPress
In reply to: Amount of text used in ExcerptsYou can’t change the default character amount from the admin, but you can alter in the functions.php file: http://codex.ww.wp.xz.cn/Function_Reference/the_excerpt
Forum: Themes and Templates
In reply to: [Mantra] How to change unordered list image bullet?w3c CSS Reference: http://www.w3schools.com/cssref/pr_list-style-image.asp
Forum: Fixing WordPress
In reply to: Can't log in (Permalinks Issue)I think that you are going to have to contact your hosting service and see if they can assist.
Forum: Themes and Templates
In reply to: All the text turned BOLD suddenly. Need help changing it back!Use Validation (http://validator.w3.org/) to see errors.
This is your problem:
Line 74, Column 6: Unclosed element b. <p><b><a href="https://www.facebook.com/Chrieon/" rel="nofollow">Facebook</a> /……the
<b>tags does not have a closing</b>tag.There are some other errors here, also.