Forum Replies Created
-
AuthorPosts
-
September 14, 2015 at 11:36 pm in reply to: How to add an alternative header logo and asign it to a category #503067
Thank you Ismael, it worked perfect.
Another lil thing: the form “addition” will not allow input, why would this be?
Thanks in advance, best regardsSeptember 12, 2015 at 11:44 pm in reply to: How to add an alternative header logo and asign it to a category #502179Hi, could you please help to change the input font-color on the contact form?
added this to the custom css but it didn’t work…
#top .main_color .input-text,
#top .main_color input [type=“text”],
#top .main_color input [type=“input”],
#top .main_color input [type=“email”],
#top .main_color input [type=“number”],
#top .main_color input [type=“tel”],
#top .main_color textarea,
{
color: #888888;
}THANKS SO MUCH!!!
ps. still waiting to muster-up courage to tackle the php header change (i’ve done mayor damage in the past) its coming…
September 1, 2015 at 10:24 pm in reply to: How to add an alternative header logo and asign it to a category #496749Have to admit a php close-to-panic (from previous php serious traumas)
Would this be right? (i mean the joining of both images)add_filter(‘avf_logo’,’av_change_logo’);
function av_change_logo($logo)
{
if(is_category( ‘linea gourmet’ ) )
{
$logo = “/wp-content/uploads/2015/09/header-linea-gourmet3.png”;
}
return $logo;
if(is_category( ‘recetas’ ) )
{
$logo = “/wp-content/uploads/2015/09/header-recetas2.png”;
}
return $logo;
}September 1, 2015 at 8:21 pm in reply to: How to add an alternative header logo and asign it to a category #496700Hi Yigit, Thanks for your quick reply.
The site is not meant as a blog but as a regular web, posts are fixed, more like pages really.
Do these posts count as “category archives”?
Thanks!!!September 1, 2015 at 1:45 pm in reply to: How to add an alternative header logo and asign it to a category #496391Hello Rikard,
Posts on 2 separate categories need 2 different heather-logos: “linea gourmet” and “recetas”…What would be the easiest way to handle this?
Thank you!!!!! -
AuthorPosts