questions4wp
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Theme (or Plugin) with Style-able Sidebar NavigationWorked like a charm! Thanks!
Forum: Themes and Templates
In reply to: Theme (or Plugin) with Style-able Sidebar NavigationThanks Chip, I’m going to try messing around with that, would you recommend putting the wp_list_page() function in a widget in the sidebar or something different?
WPyogi – I don’t have a link I can provide unfortunately, but if you use the default theme (Twenty Eleven) and add a Custom Menu widget to the sidebar, the contents of that are what I’m trying to edit in CSS.
Forum: Fixing WordPress
In reply to: Number Of Widgets Dependent On Site LengthAnybody?
Forum: Fixing WordPress
In reply to: Lining up text and photos in WYSIWYG areaI’m having the same issue – I find it relatively easy to set up images in tables or divs using HTML and CSS, but my clients do not. I’d like them to be able to drag around an image and place it exactly where they want it – I understand the issues with positioning and CSS and all of that, but something a little better than the default would be nice. I’ve tried a number of plugins that claim to be “WYSIWYG” editors, but none that I’ve seen change the behavior of pictures on a WordPress page or post.
Anyone have any recommendations?
Forum: Fixing WordPress
In reply to: Show Only One Category on Front PageThank you Pankaj! I did a little more research on the code you posted and discovered the following:
If your theme uses a loop such as this,
<?php while (have_posts()) : the_post(); $count++; ?>, you should be able to usequery_poststo affect the posts returned by the loop. For my particular theme, the code is the following:<?php query_posts(cat=1) ?> <?php while (have_posts()) : the_post(); $count++; ?>Although the while loop remains unchanged, the line above it forces it to only return posts with the category “1”.
Forum: Fixing WordPress
In reply to: Show Only One Category on Front PageI assumed this problem would affect more than just this particular theme creation company, if it’s better suited there then I’ll ask there instead
Forum: Plugins
In reply to: [WordPress Firewall 2] [Plugin: WordPress Firewall 2] Thank youYou could also use a proxy, log in and then unban yourself (I’m not sure if you realize, but if you use a different computer on the same network, like your home network, you’ll likely have the same external IP address). If you do use a proxy or a public computer, be sure to clear any logs and change your passwords!
As a sidenote, was it your IP address that was “attacking” your website in waves of 20 every 15 minutes, or was that a different address?
Forum: Plugins
In reply to: Free Self-Serve Ad Managment Plugin/Service?I have found something that appears to be similar, Google’s DoubleClick for Publishers seems to have similar functions, but also has graphs and things to track users and a lot of other functions that I don’t need. I’d be fine with ignoring them, but to use this you need to have an AdSense account, and I was denied one for some reason. Any other ideas?
@wpsites I tried that, it still doesn’t seem to be working. I set the UL width to 100% and text-align to center, and LI is set to display:inline. However, if you look at the menu in Chrome’s Inspect Element and uncheck the float:left line on the LI’s, the menu becomes a vertical list of items instead of horizontal. Am I doing something wrong?
@peredur Well that’s depressing…hopefully someone can give me some advice, I hope it’s not true that it can’t be done. I’m definitely not going to rework the entire menu structure…
Sure, thank you very much for your help. You can see a copy of the site here.
I have been using Chrome’s Inspect Element feature to examine and mess around with the CSS, but I haven’t gotten anything out of it. If you examine the CSS of the header at the moment, you can see that I’ve set
#accesstowidth: 960px; margin-right: auto; margin-left:auto;but it still is not centered. This may be because the CSS also includesfloat: left, but if I uncheck that line in Chrome’s Inspect Element, or I imagine remove it with Firebug, it makes the background color disappear, but the words remain in the same spot. Should I be putting that CSS in#accessor something else?Thank you again.
Forum: Fixing WordPress
In reply to: WordPress and Vbulletin integrationCan you clarify your question? You’re looking to create categories for posts, and add these categories to your navigation bar at the top of the site?
Forum: Themes and Templates
In reply to: Horizontal Navbar Showing Up As Vertical In IEwhat am I missing to help you guys give me some advice?
Forum: Themes and Templates
In reply to: Navbar Showing Up Behind ContentI’ve solved the problem, and I’m posting my solution here because I haven’t found very much help online. Essentially the problem was that I tried making a wrapper around the menu and setting its z-index to a value higher than the content, but that didn’t work. So instead, I took a look at the HTML of the page and found that menu items were part of nested lists. I changed the CSS for “ul”, “ul li”, etc. to have a z-index greater than the content, and now it appears as it should. I hope this helps.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Gallery Shows In Front Of Drop-Down MenuAny thoughts?
Forum: Fixing WordPress
In reply to: Custom Poetry PDF Website – Strategy?Anybody?