wp-21
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [discover] Increasing Header Image SizePlease post a link to your site as it we have to look at your code in order to suggest a solution.
Thanks.Forum: Themes and Templates
In reply to: [Twenty Twelve] Won't allow me to add an img in header.php fileYeah that will be the solution.Use absolute paths and you will be done.
Forum: Themes and Templates
In reply to: Mail and Facebook-link in new footertext Twenty ElevenHi, if you want different links for the two words you have to make separate anchors for each one of them.Right now its’ asingle word.
You can use:<a href="destination link goes here">Mail</a> <a href="destination link goes here">facebook</a> for e.g. <a href="home.html">home</a>Forum: Themes and Templates
In reply to: [WP Opulus] Menu Buttons not working in mobileIt seems your theme is responsive.
Please post the link for your site as it will only be clear then as to what the problem is.Forum: Themes and Templates
In reply to: Adding Logo to Left of Site Title and Tagline: Twenty TwelveHi, you can add a graphic or logo to the left side or anywhere in the header using the header image option under the appearance tab.
And then find the code for that inside your header.php file, which
will be this:<?php $header_image = get_header_image(); if ( ! empty( $header_image ) ) : ?> <a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img src="<?php echo esc_url( $header_image ); ?>" class="header-image" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" /></a> <?php endif; ?>and place it besides the hgroup tag at the top and then set it with css.
Hi, it would be better if you post link to your site.
However from the above code it seems it might be due to width you have set on the img element of the post.
But not sure from the code, it would be best known if the link of the site is postedForum: Themes and Templates
In reply to: how to change the direction of titles in sidebarHi, could you post the link to your site.
Forum: Themes and Templates
In reply to: [Catch Everest] How do I reposition slider text?You can give position:absolute to the line 875
and you would also like to remove the overflow:hidden attached to the section element to be able to show the title below the sliderForum: Fixing WordPress
In reply to: Help removing page titleHi, most probably it will be inside content-page.php
or if you want to hide it only on home page you can do so via css also.For every page, there is a page id generated by wordpress specific to that page only so via css it will be only a single line of code and you will be done :
where you have this in your css:
h2.entry-title{ }‘just place page id before it or the class home(generated for the home page only):
.home h2.entry-title{ display:none }Forum: Fixing WordPress
In reply to: Disabling Comments from a WP websiteHi,You have to disable it page by page then from the options inside editor while creating pages.
Go to Screen options tab at top right hand side and then enable discussions checkbox, then you will see below the editor box two checkboxes for comments and trackbacks, just uncheck the comments checkbox and you will be done.Forum: Fixing WordPress
In reply to: Post titles not appearing in twentytwelve (basic questions)Hi, yeah its due to css.
In your style.css on line 210
entry-header class is set to
display:none
That’s why you see no titles.
set that to
display:block
and you will be fine.Forum: Themes and Templates
In reply to: [Elbee Elgee] Move Feature Picture to side of textfeatured image code is like below
<?php the_post_thumbnail(); ?>you’ll find it most likely in content.php
but editing directly source files is not recommended, it would be better if you could create child theme and then do the edits so that your changes are not lost when parent theme gets updated.Forum: Themes and Templates
In reply to: [Twenty Twelve] Won't allow me to add an img in header.php fileyeah that would be great…
Forum: Themes and Templates
In reply to: [Elbee Elgee] Move Feature Picture to side of textHi,You just need to float the featured image to the left , so that text comes automatically to the right.
locate the class for the featured image and give it float:left
and you will be done.Forum: Themes and Templates
In reply to: [Twenty Twelve] Won't allow me to add an img in header.php fileHi , could you post the theme or the link to the site you are using as it is not clear from above what seems to be the problem.