Forum Replies Created

Viewing 15 replies - 1 through 15 (of 15 total)
  • Thread Starter McCologne

    (@mccologne)

    Hallo JP,

    Caching-Plugin? Nein, nicht dass ich wüsste. Die Ursache lag wohl woanders: Habe den Code vom Ende an den Anfang meines CSS verschoben, und siehe da: Jetzt klappt es. Wenn ich mehr Ahnung von CSS hätte, wüsste ich auch, warum die Position im CSS so entscheidend ist. Muss ich mal herausfinden.

    Danke für deine Unterstützung!

    Beste Grüße
    McCologne

    Thread Starter McCologne

    (@mccologne)

    Hallo JP,

    danke, du bist ja schnell! Hab’s versucht, tut’s immer noch nicht. Was mache ich falsch?

    Beste Grüße
    McCologne

    Thread Starter McCologne

    (@mccologne)

    Hallo JP,

    danke für die schnelle Hilfe, toller Service!

    Habe deinen Code in mein Child-Theme eingefügt, es funktioniert aber nicht. Kann es sein, dass sich deine CSS-Anweisung noch nicht gegen die CSS-Angabe meines Themes „durchsetzt“? Es ist, glaube ich, diese:

    .entry-content li {
        margin-bottom: 0.7em;
        list-style-image: url(http://www.volkerthiel.de/wp-content/****.gif);
    }

    Wenn ja, wie kann ich sicherstellen, dass dein CSS-Code korrekt angewendet wird?

    Beste Grüße
    McCologne

    Thread Starter McCologne

    (@mccologne)

    Hi d4z_c0nf,

    thanks for your hint! Of course class-fire-init.php must in the parent-theme to do the job.

    Another question: The new code has to be added in functions.php?

    Thread Starter McCologne

    (@mccologne)

    I just found out that (unlike described in this thread) neither “functions.php” nor “class fire-init.php” must be edited to display the fonts from the child theme. This is true for headings and body. To ensure the correct font is displayed also in site-title, the following must be added in the css of the child-theme:

    .site-title {
        font-family: [your font];
    }
    Thread Starter McCologne

    (@mccologne)

    Problem solved: Yesterday I changed the permalinks. It worked exactly as long as I accidentally did overwrite the redirects created by WP in .htaccess-file. Now everything works, even with changed permalinks.

    Thread Starter McCologne

    (@mccologne)

    Problem partially solved: Changed Settings > Permalinks to “Standard”, and it works. But how to use other Permalink-Settings than “Standard” without destroying the website?

    Thread Starter McCologne

    (@mccologne)

    Hi d4z_c0nf,

    thank you, I understand. Indeed, in most posts I use an image as first paragraph. [Edit:] This I did because I had to deactivate the feature “show thumbnail before post” (or similar in english). This I did because these images often have inappropriate aspect ratios or cutouts.[/Edit]

    You can see it here (dropcaps are still deactivated).

    Greetings

    Thread Starter McCologne

    (@mccologne)

    Thanks again, I will think about it. Topic resolved.

    Thread Starter McCologne

    (@mccologne)

    Thank you d4z_c0nf!

    I’ve tried the proposed addition to the functions.php, but it does not work. In theme-customizations > Global Settings > Google fonts “Droid Sans” is set. This is best suited to my site in which this font is used in the text.

    For page title and headings I use “Droid Serif”. For that I have to do in the style.css of my child-theme these supplements:

    .site-title, .site-description, h1, h2, h3 {
         font-family: "Droid Serif";
         font-weight: 400;
    }

    My own style.css now overrides the Google font settings from the theme customizations. So I achieve the desired result, but it is a detour. The main problem: Sourcecode of my pages shows up this line:

    <style id = 'customizr-skin-inline-css' type = 'text / css'>

    I would like to remove this. Is there no way?

    Edit: Tried your modified snippet, it does the work! Thank you. Nevertheless: How can I prevent that inline-code ‘customizr-skin-inline-css’ is ever written in the source code?

    Thread Starter McCologne

    (@mccologne)

    Hi, is there no solution? Where are the changes “customizr-skin-inline-css” saved? When I view page source, I find the css code, but where it comes from?

    If I knew that, I would restore this file from my backup.

    Thanks in advance!

    Thread Starter McCologne

    (@mccologne)

    Yes, I would like to. But I’m not sure if I understand what I need to do just that. Will try …

    Thread Starter McCologne

    (@mccologne)

    Now it worked: Downloaded de_DE.po / .mo, corrected some errors and re-uploaded to /…/wp-content/themes/customizr/inc/lang. The translations are now correct. If you want, I can make available to you the file.

    Thread Starter McCologne

    (@mccologne)

    Hi iCaleb,

    and thanks a lot! The functions.php of the theme does not provide any possibility to reach my goal, code seems to be much more modularized into other files.

    I will try to understand the essentials of move-tagline, but this will be hard for me.

    Thread Starter McCologne

    (@mccologne)

    Hi iCaleb,

    thanks for your help! I hoped, this could be done with css, but I’m not familiar with coding, just a bit in css. When I look into the header.php, there seems to be no get_bloginfo. Instead of this, the site-titel and site-description seems to be managed by functions, which are located somewhere else.

    I put the code in header.php just below, perhaps you have another idea?

    <?php
    /**
     * The Header for Customizr.
     *
     * Displays all of the <head> section and everything up till <div id="main-wrapper">
     *
     * @package Customizr
     * @since Customizr 1.0
     */
    ?>
    <!DOCTYPE html>
    <!--[if IE 7]>
    <html class="ie ie7" <?php language_attributes(); ?>>
    <![endif]-->
    <!--[if IE 8]>
    <html class="ie ie8" <?php language_attributes(); ?>>
    <![endif]-->
    <!--[if !(IE 7) | !(IE 8)  ]><!-->
    <html <?php language_attributes(); ?>>
    <!--<![endif]-->
    	<?php
    		//the '__before_body' hook is used by TC_header_main::$instance->tc_head_display()
    		do_action( '__before_body' );
    	?>
    
    	<body <?php body_class(); ?> <?php echo apply_filters('tc_body_attributes' , 'itemscope itemtype="http://schema.org/WebPage"') ?>>
    
    		<?php do_action( '__before_header' ); ?>
    
    	   	<header class="<?php echo implode( " ", apply_filters('tc_header_classes', array('tc-header' ,'clearfix', 'row-fluid') ) ) ?>" role="banner">
    			<?php
    				// The '__header' hook is used with the following callback functions (ordered by priorities) :
    				//TC_header_main::$instance->tc_logo_title_display(), TC_header_main::$instance->tc_tagline_display(), TC_header_main::$instance->tc_navbar_display()
    				do_action( '__header' );
    			?>
    		</header>
    		<?php
    		 	//This hook is used for the slider : TC_slider::$instance->tc_slider_display()
    			do_action ( '__after_header' )
    		?>

Viewing 15 replies - 1 through 15 (of 15 total)