Edward Caissie
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: menus not working properlyReplace that line with this one:
#eqnav li{ position:relative;list-style-type: none; margin: 0px 0px 0px 0px; padding: 0px; float: left; height: 60px; display: inline;background: url(images/menu-divider.jpg) left center no-repeat; z-index: 1000;}That should do the trick …
Forum: Fixing WordPress
In reply to: menus not working properlyI just tested it again using Firebug and it works fine for me.
PS: The line reference should be 126, or at least it is now.
Forum: Themes and Templates
In reply to: Text "Your comment is awating moderation" not showing anymoreA link to your site or the current active theme would be very useful for someone to help …
Forum: Fixing WordPress
In reply to: menus not working properlyOpen your style.css file and add ‘z-index: 1000;’ to the following element (around line 125):
#eqnav li { background: url("images/menu-divider.jpg") no-repeat scroll left center transparent; display: inline; float: left; height: 60px; list-style-type: none; margin: 0; padding: 0; position: relative; z-index: 1000; }Give it a try and see what you get, the problem is the “Home” link is at the same relative “z” position (think “depth”) as the menu items.
Forum: Fixing WordPress
In reply to: Black Dots on My SidebarTry something like:
ul.xoxo a.fb_button { margin: 10px; }… at the end of your style.css file.
Forum: Fixing WordPress
In reply to: Black Dots on My SidebarLine 29 of your style.css reads like this:
ul.xoxo { display: block; list-style: none outside none; padding: 0; text-align: center; }You can adjust the space between the widgets by changing the
padding: 0;line to something along the lines ofpadding: 10px 0;… you will have to adjust to your own taste. I will leave the “Facebook” button as an exercise for yourself 😉Forum: Fixing WordPress
In reply to: Black Dots on My SidebarCompare your version of the sidebar.php to the sidebar.php template file found in Twenty Ten … look at the use of the
<ul>tags. They are not apparent in your file.Forum: Fixing WordPress
In reply to: Black Dots on My SidebarIt’s most likely something you will find in the sidebar.php template file; then you may still need to correct the stylesheet afterward.
Forum: Fixing WordPress
In reply to: Black Dots on My SidebarI looked at the page source for your site; which specific lines of code and where they would be is specific to your theme. That is why I recommended you go back to the author to correct it.
Forum: Fixing WordPress
In reply to: Calling posts tagged with todays dateHave you looked at “Event Calendar” plugins?
Forum: Fixing WordPress
In reply to: Black Dots on My SidebarThe dot is being produced by the stylesheet element(s) being used to display lists and list items.
There also appears to be an issue with the code as the list item is not being written in a list container. Currently it is:
<div><li>...</li></div>
… and should likely be:
<ul><li>...</li></ul>I would recommend both of the above be addressed by your theme author.
Forum: Fixing WordPress
In reply to: home page messed upYou are using the Twenty Ten Theme … if this is the only edit you have made and you simply want to reverse it then you can do so very easily.
NB: If there are other edits to the Theme files that have been made the following will over-write them and you will have to have these edits re-done.
- Go to your Administration Panel
- Under Dashboard, click Updates
- Click on the “Re-install Automatically” button.
- Follow the prompts as necessary.
This will essentially reset your web site to the default WordPress 3.1 setup using the default Twenty Ten v1.2 Theme.
Please remember to make a backup of your site prior to doing this, just in case.
Forum: Requests and Feedback
In reply to: Theme DeniedI will start deriving from other themes to make it easier and resubmit.
I’m not sure if that should be taken as sarcasm or a gauntlet being thrown down but I look forward to your next submission of a new original design and theme concept. I’m sure it will be an interesting review process.
Forum: Fixing WordPress
In reply to: Exclude single post from categoryYou’re welcome 🙂
Forum: Fixing WordPress
In reply to: Exclude single post from categorySee this codex page: http://codex.wordpress.org/Function_Reference/query_posts
… and it reference to this example:
query_posts( array( 'post__not_in' => array( 2, 5, 12, 14, 20 ) ) );