wat ik moet doen om Description tekst kleur in andere kleur te hebben dan Titel tekst kleur?
Die is de code van mij Wordpress thema Custom.header.php:
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
/**
* Sample implementation of the Custom Header feature.
*
* You can add an optional custom header image to header.php like so ...
*
<?php if ( get_header_image() ) : ?>
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
<img src="<?php header_image(); ?>" width="<?php echo esc_attr( get_custom_header()->width ); ?>" height="<?php echo esc_attr( get_custom_header()->height ); ?>" alt="">
</a>
<?php endif; // End header image check. ?>
*
* @link https://developer.wordpress.org/themes/functionality/custom-headers/
*
* @package garage
*/
/**
* Set up the WordPress core custom header feature.
*
* @uses garage_header_style()
*/
function garage_custom_header_setup() {
add_theme_support( 'custom-header', apply_filters( 'garage_custom_header_args', array(
'default-image' => '',
'default-text-color' => '000000',
'width' => 1500,
'height' => 750,
'flex-height' => true,
'wp-head-callback' => 'garage_header_style',
) ) );
}
add_action( 'after_setup_theme', 'garage_custom_header_setup' );
if ( ! function_exists( 'garage_header_style' ) ) :
/**
* Styles the header image and text displayed on the blog.
*
* @see garage_custom_header_setup().
*/
function garage_header_style() {
$header_text_color = get_header_textcolor();
/*
* If no custom options for text are set, let's bail.
* get_header_textcolor() options: Any hex value, 'blank' to hide text. Default: HEADER_TEXTCOLOR.
*/
if ( HEADER_TEXTCOLOR === $header_text_color ) {
return;
}
// If we get this far, we have custom styles. Let's do this.
?>
<style type="text/css">
<?php
// Has the text been hidden?
if ( ! display_header_text() ) :
?>
.site-title,
.site-description {
position: absolute;
clip: rect(1px, 1px, 1px, 1px);
}
<?php
// If the user has set a custom color for the text use that.
else :
?>
.site-title a,
.site-description {
color: #<?php echo esc_attr( $header_text_color ); ?>;
}
<?php endif; ?>
</style>
<?php
}
endif;
[/code]
Welke lijn code ik moet veranderen of toevoegen in de Custom.header.phpn om Titel tekst Kleur in andere kleur te hebben dan Description tekst kleur?
Ik heb van alles geprobeerd in Style.css om Titel tekst kleur anders te hebben dan description tekst kleur ,maar het blijft beide teksten op hetzelfde kleur!
dank u wel
johan
/**
* Sample implementation of the Custom Header feature.
*
* You can add an optional custom header image to header.php like so ...
*
<?php if ( get_header_image() ) : ?>
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
<img src="<?php header_image(); ?>" width="<?php echo esc_attr( get_custom_header()->width ); ?>" height="<?php echo esc_attr( get_custom_header()->height ); ?>" alt="">
</a>
<?php endif; // End header image check. ?>
*
* @link https://developer.wordpress.org/themes/functionality/custom-headers/
*
* @package garage
*/
/**
* Set up the WordPress core custom header feature.
*
* @uses garage_header_style()
*/
function garage_custom_header_setup() {
add_theme_support( 'custom-header', apply_filters( 'garage_custom_header_args', array(
'default-image' => '',
'default-text-color' => '000000',
'width' => 1500,
'height' => 750,
'flex-height' => true,
'wp-head-callback' => 'garage_header_style',
) ) );
}
add_action( 'after_setup_theme', 'garage_custom_header_setup' );
if ( ! function_exists( 'garage_header_style' ) ) :
/**
* Styles the header image and text displayed on the blog.
*
* @see garage_custom_header_setup().
*/
function garage_header_style() {
$header_text_color = get_header_textcolor();
/*
* If no custom options for text are set, let's bail.
* get_header_textcolor() options: Any hex value, 'blank' to hide text. Default: HEADER_TEXTCOLOR.
*/
if ( HEADER_TEXTCOLOR === $header_text_color ) {
return;
}
// If we get this far, we have custom styles. Let's do this.
?>
<style type="text/css">
<?php
// Has the text been hidden?
if ( ! display_header_text() ) :
?>
.site-title,
.site-description {
position: absolute;
clip: rect(1px, 1px, 1px, 1px);
}
<?php
// If the user has set a custom color for the text use that.
else :
?>
.site-title a,
.site-description {
color: #<?php echo esc_attr( $header_text_color ); ?>;
}
<?php endif; ?>
</style>
<?php
}
endif;
[/code]
Welke lijn code ik moet veranderen of toevoegen in de Custom.header.phpn om Titel tekst Kleur in andere kleur te hebben dan Description tekst kleur?
Ik heb van alles geprobeerd in Style.css om Titel tekst kleur anders te hebben dan description tekst kleur ,maar het blijft beide teksten op hetzelfde kleur!
dank u wel
johan
Gewijzigd op 08/07/2016 15:48:22 door Johannes davidian
Er zijn nog geen reacties op dit bericht.