Heya,
I have a client who wants images in the titles of the 'Contact' page as well as the title of the 'Views'. I have changed the images of the other pages by assigning the H2 to a class then adding an image as a background.
Contact Page Title::
I was looking through the contact.module and was trying to get 'title' to accept an
tag, but it kept accepting it all as text.
$items['contact'] = array(
'title' => '
', <---------------- the output is literally
, i can't get it to accept an image
'page callback' => 'contact_site_page',
'access arguments' => array('access site-wide contact form'),
'type' => MENU_SUGGESTED_ITEM,
'file' => 'contact.pages.inc',
);
Views Page Title::
I don't know where to look to assign the h2 tag to a class that gives me control over this the view title. I looked in the files that looked associated with the Grid layout's to no avail. Any ideas?
Thanks,
Kris
Comments
For the Views I would try
For the Views I would try Full HTML in the HEADER (Edit View > Basic Settings > Header > Full HTML)
I tried that, but it puts the
I tried that, but it puts the header a little off from where it puts the title.