Root
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Center the menuheck !
Forum: Themes and Templates
In reply to: Uploading Custom ThemeAre u on some kind of local server install ?
Forum: Themes and Templates
In reply to: Centralize TwentyTen MenuYeah sure. In yr child theme center div#access………..grrrrrrrr
Forum: Fixing WordPress
In reply to: Twentyten: time in posts and numerate commentsThe date time is set up in Settings in admin I believe
Forum: Themes and Templates
In reply to: How to Delete Custom HeaderAs a quick hack you can use
display:nonein the CSS 😉Forum: Themes and Templates
In reply to: Custom "continue reading" in TwentytenVery cool. Thanks 😉
Forum: Themes and Templates
In reply to: Centralize TwentyTen MenuYou might need to center the access div……..
Forum: Themes and Templates
In reply to: Need help with making clickable headerhtml is mark up not code
good luck with thisForum: Themes and Templates
In reply to: Need help with making clickable headerWell proper browsers let you use anything as an anchor not just a link……..
Forum: Themes and Templates
In reply to: Custom "continue reading" in TwentytenWell there must be a function to do that somewhere……Looking at the function I posted you just need to add an array and rotate thru it 😉
Forum: Fixing WordPress
In reply to: How do they do this!Its not inconceieveable that its been done with CSS.
Forum: Themes and Templates
In reply to: Sidebar pushed right, post width increased?I think there might be an unclosed div somewhere.
Forum: Themes and Templates
In reply to: Custom "continue reading" in TwentytenHere u go
// no more jumping for read more link function no_more_jumping($post) { return '<a href="'.get_permalink($post->ID).'" class="read-more">'.'Continue Reading'.'</a>'; } add_filter('excerpt_more', 'no_more_jumping');Forum: Themes and Templates
In reply to: Custom "continue reading" in TwentytenFar better to put the new function when u find it in functions.php in yr Child Theme IMHO. Never hack core files.
Forum: Themes and Templates
In reply to: Need help with making clickable headerI dont think you are on the right lines here. It is not necessary to include the image in the html via a template. To accommodate IE it is the link which needs to be clickable. Not the zone it is in. We would normally
set the link to display: block and increase its height so it fills its parent container. Then we set the fancy bg up in the css as a background.
Understood correctly this is a CSS question not a php / template thing.