Forum Replies Created
-
AuthorPosts
-
Detlef
ParticipantWorks perfect, here's the code:
// add custom style
add_action( 'wp_enqueue_scripts', 'template_enqueue_scripts' );
function template_enqueue_scripts() {
wp_enqueue_style( 'meineseite', get_stylesheet_directory_uri() . '/page-templates/meineseite.css', array(), CHILD_THEME_VERSION );}
Detlef
Participantworks perfect!
Detlef
Participanti will try this one!
Detlef
ParticipantYou mean this one directly into meineseite.php without any changes in function.php?
// add custom style add_action( 'wp_enqueue_scripts', 'template_enqueue_scripts' ); function template_enqueue_scripts() { wp_enqueue_style( 'template-styles', get_stylesheet_directory_uri() . '/page-templates/meineseite.css', array(), Authority Pro );
Detlef
Participanti added following code to the function.php of Authority Pro:
// custom css fΓΌr templates
function wpse_enqueue_page_template_styles() {
if ( is_page_template( 'meineseite.php' ) ) {
wp_enqueue_style( 'meineseite', get_stylesheet_directory_uri() . '/page-templates/meineseite.css' );
}
}
add_action( 'wp_enqueue_scripts', 'wpse_enqueue_page_template_styles' );Detlef
ParticipantTried this --- with no effect
Detlef
ParticipantThank you for your quick response ... changed this - but without effect
Detlef
ParticipantThanks! I didn't realize that header image equals header logo π Thought that would be a kind of banner.
December 22, 2017 at 7:08 am in reply to: Authority Pro: Can i make the blog page look as the multipicture categories? #214738Detlef
ParticipantDecember 22, 2017 at 6:51 am in reply to: Authority Pro: Can i make the blog page look as the multipicture categories? #214736Detlef
ParticipantYou're amazing π Works as far. Problem: How can i get the blog_page.php on full width layout? Now i looks stuffed, cause single page in authority pro is quite narrow.
Detlef
ParticipantThanks braddalton, works like charm π
Detlef
ParticipantIt's super easy to change: Just add this snippet to your function.php: https://my.studiopress.com/documentation/snippets/post-excerpts/modify-the-content-read-more-link/
June 29, 2017 at 7:26 am in reply to: Monochrome – How to make Read More Button to a simple link like [Read more …] #208453Detlef
ParticipantThank you Victor, it works! What a difference a comma makes π
June 29, 2017 at 6:29 am in reply to: Monochrome – How to make Read More Button to a simple link like [Read more …] #208442Detlef
ParticipantThanks for your quick response: Here's the link:
https://webtexten-fuer-nicht-texter.de/webtexten-blog/
Would like to have it look like this:
June 29, 2017 at 3:04 am in reply to: Add widgeted footer to Monochrome Pro, then position it #208430Detlef
ParticipantHi, where can i find the excellent "add a widgeted footer" tutorial on StudioPress for monochrome pro? Can you give me a link?
Thanks
-
AuthorPosts