Belle224
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Drop Down Menus not working for Custom Menus?Thanks, I’ve actually created this theme myself so I don’t know what’s going wrong. I’ve tried it in the TwentyTen theme and the drop down menus are working fine. Are there any “common” reasons why it’s not working?
Here’s the coding I used for the custom menus:
In my functions.php:add_action( 'init', 'register_my_menus' ); function register_my_menus() { register_nav_menus( array( 'header-menu' => __( 'Header Menu' ), 'sidebar-menu' => __( 'Sidebar Menu' )));
And here’s the code of course that I insert into the theme:
<?php wp_nav_menu(array('theme_location' => 'header-menu')); ?>
Forum: Fixing WordPress
In reply to: Reply image not to show when threaded comments cannot nest anymore?Thanks, I don’t really get it but thanks for trying. ??
Forum: Fixing WordPress
In reply to: RSS feed with ImagesRSS Feeds don’t have images, they’ve never had. I recommend you try and look into Feedburner, visitors can subscribe to the RSS by email etc and images show also.
Forum: Fixing WordPress
In reply to: Reply image not to show when threaded comments cannot nest anymore?Sorry, I’m a newbie when it comes to theme design, somewhat. Where would I insert that…?
Forum: Fixing WordPress
In reply to: How on earth does one center tables?For your class “aligncenter”, add that in the CSS. That I said above with the margins and display thing. Or you can add a “style” to your table.
Like…
table style="..."
Forum: Fixing WordPress
In reply to: Reply image not to show when threaded comments cannot nest anymore?Hm, I’m actually running into problems again. When I close comments, the reply button goes away, but the image stays. Any solution?
Forum: Fixing WordPress
In reply to: Logged in as Admin in comment area?Thank you! Now let’s see if I can figure this out…
Forum: Fixing WordPress
In reply to: How on earth does one center tables?Well to center images you’d do:
margin-left:auto; margin-right: auto; display:block;
So I suppose you add that for your table. ??
Forum: Fixing WordPress
In reply to: Reply image not to show when threaded comments cannot nest anymore?Thanks, it worked.
Forum: Fixing WordPress
In reply to: Reply image not to show when threaded comments cannot nest anymore?https://test.berrybellebee.co.cc/?p=1
Here, and do you need coding from my CSS etc? But you could view the source if needed too. And there’s a test post by “Nina”, and threaded comments couldn’t nest anymore but yet the image is still displayed but not “reply” button.
Forum: Fixing WordPress
In reply to: Reply image not to show when threaded comments cannot nest anymore?Is there anyway I could do this like CSS, or PHP or something like that? D:
Forum: Plugins
In reply to: [WassUp Real Time Analytics] [Plugin: WassUp] Cannot delete?Thanks, it worked!
Your dog is also really really cute!
Sorry for double-posting, the editing option doesn’t seem to be working.
You can also use this code, I found it on the developer’s website. This is just an example of styling.
ul.advanced-recent-posts { list-style:none; line-height:1.35em; margin:0;} ul.advanced-recent-posts li { clear:both;width:100%;margin: 0 0 15px;} ul.advanced-recent-posts a { font-weight:bold; } ul.advanced-recent-posts img { float:left; margin:0 10px 0 0; padding:2px;border:none; }
I’m sorry for the such late response. Well, I technically didn’t hack into the code. In the widget, for the settings there are certain places where it allows you to code. Like for example in the separator part, I was able to make it bold. But for in the date format you cannot.
Since I was placing this widget in the sidebar, I just went to my CSS and changed it up. Like for example, when I stylized images and how they were styled I just went into my sidebar and did “sidebar img” because the thumbnail is an image, which is in the sidebar. And also it kind of helped me style the excerpt of the post, in which I did a margin-bottom which helped place where it went.
Visit my website, it’s on the sidebar part.
https://berrybellebee.co.cc/Forum: Fixing WordPress
In reply to: A code to show my "scripts"Hm, that’s really odd. I don’t think you’re doing anything wrong… maybe try changing pre to code? like instead of
pre {
docode {
. And if all else fails and there’s no solution, make it a class or id in the CSS and then you’d insert a div when you want to add codes.