It is almost impossible to help without knowing what is to go in the extra row, and being able to see the code that creates the page.
Please explain what is to go in the row, and put the code for the template into a pastebin and post a link to it here.
I do want a row in about font-size 18 red text with an underline. Thats all!
I think I have to select the php file and the class in someway in the style.css file but no chance know in which row or in wich area
As I posted the link I assume that anyone able to help me also have it easier to pick up the style.css as it is over 2300 rows.
I have tried this.
‘ <?php get_str_janne(); ?>
‘
In the main index.php file.
like this.
‘
<?php $aOptions = get_option(‘eos_options’); ?>
<?php get_header(); ?>
<?php if ( is_tag () OR is_category () ) { ?>
<?php } ?>
<div id=”contentWrapper”>
<div id=”contentArea”>
<?php if(function_exists(‘dynamic_sidebar’)): ?>
<div class=”headerBar”>
<?php dynamic_sidebar(‘header_bar’) ?>
<?php get_str_janne(); ?>
</div>
<?php endif; ?>
‘
In str.php I have done this.
‘
<?php
$aOptions = get_option(‘eos_options’);
?>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN”
“http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml” <?php language_attributes(); ?>>
<body
<div id=”contentWrapper”>
<div id=”contentArea”>
<?php if(function_exists(‘dynamic_sidebar’) && $aOptions[‘enableHBPosts’]): ?>
<div class=”janne”>
<?php dynamic_sidebar(‘header_bar’) ?>
<?php<p>TEXT ………HERE……… MAYBE WORKS</p> ?>
</div>
<?php endif; ?>
/body>
/html>
‘
Sorry, I can’t make sense out of what you are doing. Maybe someone else can help.