Hello I am using the Twenty Ten theme on a WordPress 4.9.1 I need to remove the header image for just some specific pages, but not the whole site. Is there a custom css code I can use for this? I tried some other I found in searches, but had no luck. Thank you.
Edited to clarify: When I changed my WordPress theme to TwentyTen, my RSS feed stopped working. I had it set up to feed new blog posts (my WP site) to my primary website. I tried doing a number of things, but I can't remember what I did. However, at one point, the feed started working (but that may have been with another theme). My WP site is at http://blog.jeffbloom.net. The site I want to feed to (near the bottom of …
I'm using the theme Starkers, which is based on twentyten. My twentyten theme places child pages below its parent page. But the new theme (based on Starkers) I'm developing doesn't (it just places it in the first level). My theme header.php: <div id="access" role="navigation"> <?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?> </div><!-- #access --> <div id="branding"> <h1> <?php if (get_option(THEME_PREFIX . "logo_image_enabled")) { ?> <a href="<?php bloginfo('url'); ?>" title="<?php bloginfo('name'); ?>"><img src="<?php bloginfo('template_directory'); ?>/images/<?php echo …
I'm sure there's a simple CSS answer to this that I'm not seeing :( http://www.glennduxbury-inspections.com/litb/ On my navigation menu if you hover over a sub menu item, and then slowly move your mouse to the right, it will switch to the next items sub menu. I don't want this to happen especially for the "services" dropdown, because it has a 3rd tier menu I can't even hover over. I've tried throwing z-index's on the sub menu, and all the items …
here is the deal... I got hold of this piece of code to change the default post type shown on my TwentyTen child theme's homepage. It works like a charm when I add this code to the functions.php file, but I would like to also limit the number of posts to 1 (or 2) instead of the default 10 as in "Settings" section. What can I add to the code below so that it display only 1 (or 2) Tours? …
I try to align content side by side. I tried this solution from the Wordpress forum but it is not working for me: http://wordpress.org/support/topic/how-can-i-display-two-pictures-next-to-each-other
I'm using Wordpress 3.0.1 with the Twenty Ten theme. I'm trying to change the way the posts in the Category view are displayed (i.e. by going to a url like mywebsite.com/category/mycategory). Currently the posts in the Category view just show the first part of a post, but I'd like to change that so it shows the whole thing. In the Category Template (category.php) file, there are a few lines of code that look like they are responsible for generating the …
I am running the Twenty Ten theme. I want to override comment formatting for certain posts. After researching how to do this, I copied the twentyten_comment function from the parent theme (twentyten) into the functions.php file for my child theme (twentyten-child). To confirm that I am running the code from the child, I added code to display the word 'child' on the output. I also modified the parent twentyten functions.php file to output the word 'parent' if that code is …
I really like the drop down menu solution of twenty eleven theme: http://twentyelevendemo.wordpress.com/ and would like to create a similar one but I cannot figure how it works, or is it based on some existing code for dropdown menus? Is there any source code that can be used, or can someone explain the principle behind it? I know internet is full of both js and non-js solutions, I've even made some myself, but IMO nothing comes near this menu, so …
I am fairly new to WordPress, and I would like to have a list of the most recent posts in a certain category appear in a right-hand panel (I can do this with all posts, but not specific categories) I am using the Twenty Ten theme, on wordpress.com. I have found the following code, but unsure if or where this can be added: <ul> <?php $recent = new WP_Query("cat=10&showposts=5"); while($recent->have_posts()) : $recent->the_post();?> <li><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></li> <?php …
I can't figure out a solution for changing the black bar in Twenty Ten to individual background images behind each link. Using an image I created in Photoshop I have tried changing a few things in the CSS file but probably not the right changes. Do I need to edit the functions file too?
This is a terrible user experience when I'm trying to do the most simple thing and it never works. There are many pages with "instructions" how to do this and none of the "instructions" work. Now we hate Wordpress for making the most simple thing just not possible. ## Solution ## This only worked when doing it via the quick-edit which is disastrous since there no instruction that says so. We should get our money back for this crap.
I have two issues to change the language for the theme at 'runtime'. I'm not sure about my question title, hope my description helps. I already use a plugin Polylang and there nice features: link pages with equal content but different languages AND configure primary menu for each language AND a language switcher which will be added into the primary menu. (I also tried xLanguage and xili-language, but they were not confortable for me) Polylang has very nice features, but …
I'm moving site root to sub directory, menu background image or site header display as default, I have change URL in db as set all sub directory location also set .htaccess but my custom background or header and menu not display as before? I'm used twenty ten theme.
So I have been building a child theme for a site. Wanted to add post formats to a twentyten child theme. Now, the goal of my child theme is to copy over the absolute least amount of code/templates from the parent as possible. I originally figured if I added additional post formats to a twentyten child theme, using a custom function which uses add_action after_setup_theme, it would work. However, that does nothing. Something like (either with or without the 2 …
i want adding tag on my single post, currently now i am using bbpress (Twent Ten) Themes, What i want is include Taged With : on a single post. Thank You, RA
I am currently building a site using a child theme for the first time. Basically, I have a flash banner the client has already had made, and want to replace the twentyten image banner with the flash. I know how to do this by editing the header.php (I think!) but was wondering if there was a better way to do it - using function.php in my child theme perhaps? It would be nice if the client could update the theme …
We've been reading through the documentation and watched a video, and gone through all the options in the Dashboard, but whenever we try adding links to the Blog Roll or 'Blogs I follow' section, they never appear on my blog. How do you add favorite links/links to blogs to the side of the blog?
I've bee experimenting with a site I'm working on. My client wants the header with its nav and logo intact, so visitors always have the ability to access the navbar while scrolling to read the page content. I have added fixed to my wrapper div and that keeps the background static, but in this design the background is also part of the header. My page is http://axiomwest.com/client-services/ How can I achieve a fixed header area and allow scrolling only in …