Content alignment in Twenty Fourteen Theme

I recommend a tool like firebug (http://getfirebug.com/). It will give you the precise values and locations of the applicable css-styles in your style.css. If you use the same file in both installations there should be no differences except for different content or different devices.

Padding added in sidebar, not coming from my style sheet [closed]

It sounds like you are seeing a browser default. Most browsers have some styles built in by default which unfortunately often include margins and padding. A lot of developers will put a basic reset on the top of their CSS file, something like *{margin:0;padding:0;border:none} This will clear the defaults and only display margins/paddings/borders that you … Read more

Making a custom CSS per mobile

You need use the wp_is_mobile() For example changing your style.css in the header.php <?php if ( wp_is_mobile() ) { /* Display and echo mobile specific stuff here */ } ?>

Controling css order

You can try this in your plugin files. <?php add_action(‘wp_footer’, ‘styles_at_extremely_end_of_the_page’, PHP_INT_MAX); function styles_at_extremely_end_of_the_page() { ?> <style> /* Your Custom CSS here */ </style> <?php }

Move both sidebars more to their sides [closed]

So your main Container the part with the content area and sidebar goes to a max width of 1024px. if you increase it then the sidebars will stay the same width and the extra width goes to your content area. Now how do you do this: in you style.css on line 470 this part is … Read more

Import HTML code that loads css and javascript into specific page

Add CSS and JS Particular Page. Put this code in your current active theme function.php file <?php function function_name() { is_page( ‘about-me’ ) //is_page( ‘PAGE_SLUG_NAME’ ) { wp_enqueue_style( ‘stylecss’, get_template_directory_uri() .’/css/style.css’,”, ‘3.3.1’ ); wp_enqueue_script( ‘script’, get_template_directory_uri() . ‘/js/script.js’, array ( ‘jquery’ )); } } add_action( ‘wp_enqueue_scripts’, ‘function_name’ ); ?>

Specific text not affected by CSS style [closed]

You can do that with CSS pseudo nth-child classes. Here is an example to make first two strong black. .beer-description strong:nth-child(1), .beer-description strong:nth-child(2) { color: #404040; } You can modify CSS in this as you wish.

Align form elements with css

Currently you have: #fscf_form3 div { margin-bottom: 6px; } If you increase it let’s say to 11 you can see that the box goes to the right and properly aligns. Basically using the proper selectors you need to increase either the margin-top of the div or the margin-bottom of the div above it.