Equal
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Font Color Issue (not changing).Add this to the bottom of your themes style.css file:
#wrapper2 #container #container2 #left-div #left-inside .post-wrapper { color: #000000; }Forum: Themes and Templates
In reply to: cssIf you can provide a link to your site and explain what needs changing?
Forum: Fixing WordPress
In reply to: Delete All Role “None” MembersIf they are all set to the same ‘role’ you can filter your list of users using the filters at the top of the screen (above the bulk actions drop down). Once you have them all on the screen select all with the radio button at the top and then click the bulk actions drop down to delete them.
Forum: Fixing WordPress
In reply to: HTTP Error when uploading ImagesWhat is the max upload size in php.ini? Make sure that it is at least 8mb.
Do you get these errors when using the browser upload? Sometimes it can be your host mod_security blocking something in the flash uploader. Ask them if they have a solution.
Forum: Fixing WordPress
In reply to: Can’t access website, uploaded new theme=diasterJust delete the themes folder inside wp-content/themes
Your site should then revert back to the default theme and work normally again. Then you can activate the theme you had before.
Forum: Fixing WordPress
In reply to: how to hide sub-pages from showingUse this:
<?php wp_list_pages('depth=1&title_li='); ?>Reading this page will help:
Forum: Themes and Templates
In reply to: How to not style a link in CSSAdd this to the bottom of your themes stylesheet:
#wrapper #box #boxrss a img { border:none; }Forum: Fixing WordPress
In reply to: how to hide sub-pages from showingYou would need to replace this:
<?php wp_page_menu(); ?>Forum: Fixing WordPress
In reply to: how to hide sub-pages from showinghave you a link to your site?
Forum: Fixing WordPress
In reply to: Extremely slow average page load timeYou also have some javascript files that are trying to load and don’t exist and also there are some errors on the page. Using Safari Resources Developer tool there are errors you should fix.
Forum: Fixing WordPress
In reply to: How not to display post/categories in the front pageWhy not to create a category in your blog called “FrontPage”. Then make your index.php just loop through posts in this category. You could create a loop like this:
<?php if(in_category('FrontPage') ) { ?> // put normal loop etc in here <?php } ?>Forum: Fixing WordPress
In reply to: Changing Title font/styleIf you mean your post titles then find
.maininfoBlock h1 ain your themes style.css file and then change the settings in there. For example you could add
font-size: 24px;To increase the size.
Forum: Fixing WordPress
In reply to: Positioning Header ImageRemove
margin-top: 150px;
from #wrapper in the stylesheet.That should move things up a little better.
Forum: Fixing WordPress
In reply to: how to hide sub-pages from showingFind that code in your themes template files. It is probably in your themes header.php file or the themes sidebar.php file. All your themes files are stored in the themes folder in the wp-content/themes folder.
Forum: Fixing WordPress
In reply to: I swear there is no “template” dropdown?The templates only work for pages not posts, so if you are looking for it on your blog posts then you won’t find it.
To use different templates with posts to make posts display differently for different categories for example you will need to use Conditional Tags. Take a look here: