Forum Replies Created
-
AuthorPosts
-
shewearswhite
MemberTurns out I just needed to clear the cache! Thanks so much for your time.
shewearswhite
MemberYes, thats exactly where I'm changing it but it is still showing as Old Standard tt font!
Any ideas?
shewearswhite
MemberOk managed to figure this one out!
shewearswhite
MemberThanks SoZo,
I tried inserting the following code into my functions.php however it removed the post info from ALL posts not just my custom post type. Can you see where I'm going wrong?
function custom_post_info($post_info)
{
global $post;
if(get_post_type($post->ID) == 'post_type_name' )
{
return false;
}
else
{
return $post_info;
}
}
add_filter('genesis_post_info', 'custom_post_info ');shewearswhite
MemberOk, found it! I was just adding it to the wrong place.
shewearswhite
MemberThanks for the response, is there a website that tells me how to add the search.php file? I have created one in notepad and I have FTP access but when I transferred it over it doesn't show under my templates.
Thanks!
shewearswhite
MemberOK, I created a custom post type so solved this query!
shewearswhite
MemberHi everyone,
So if I want all my post titles to be font: arial, color: #444 and font size: 20px for example would I use ".post h1 ....etc" and add it to my stylesheet?
Thanks
shewearswhite
MemberHi Chris,
No I'm wanting to have the font, color and size the same for all posts but I don't want the headings on each page to change as well, just the post titles.
Thanks,
Katie
shewearswhite
MemberHi Chris, I completely forgot I added that! Thanks for your help.
shewearswhite
MemberBack up and running, if you have any ideas about the sidebar going all the way to the bottom that would be great!
shewearswhite
MemberIt sure is!! Just talking to my hosts now trying to figure out why!
shewearswhite
MemberHi Ria,
Thanks for that, I've managed to add the divider line however it doesn't go all the way to the bottom, as you can see especially on the real weddings page (because there are no posts) it only goes to below the title, any ideas how to make it stretch to the very bottom?
Thank you again!
Katie
shewearswhite
MemberHi Ria,
I have changed the css however now I have no line, I'm not too fussed because it actually looks quite nice without the line down the middle but would you know how to add it if I did want a line?
Under the content css here is the existing code;
/* Content
------------------------------------------------------------ */#content {
float: left;
width: 420px;
}.content-sidebar #content,
.sidebar-content #content {
width: 640px;
background-image: none;
border-right: 1px solid #E5E5E5:
width: 639px:
}shewearswhite
MemberHi Ria,
I've changed the code as you suggested;
.home #wrap #inner {
background-image: none;
}and
.content-sidebar #content,
.sidebar-content #content {
width: 640px;
background-image: url(“images/home-inner.png”);
background-repeat: repeat-y;
}but the sidebar is still in the same place and now the homepage is also showing the sidebar at 740 pixels instead of 640.
Any ideas?
-
AuthorPosts