Travis
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Brunelleschi] Change homepage from blog to static pageTry reading this page in the codex: https://codex.www.ads-software.com/Creating_a_Static_Front_Page
Forum: Themes and Templates
In reply to: Please Help With Moving Sidebar from Left to RightAhh, it looks like there is javascript displaying styles inline when you scroll down the page. You’ll have to contact the theme developer about this unfortunately :/
Forum: Themes and Templates
In reply to: Centering title-area and widget-areaDid you try:
#header { width:1000px; }
Forum: Fixing WordPress
In reply to: How to reduce nav menu heightTry adjusting your line-height:
.main-navigation li a { line-height: 30px; }
Forum: Plugins
In reply to: [Cookies for Comments] Footer WhitespaceJust wanted to mention that I added this to my css and it worked perfectly, thank you for this post to get me started!
img[alt="css.php"] { position: absolute; clip: rect(1px 1px 1px 1px); /* IE6, IE7 */ clip: rect(1px, 1px, 1px, 1px); height:0; /* Chrome */ }
Forum: Themes and Templates
In reply to: Remove space below post in Twenty TwelveYour code has border-bottom, try margin-bottom instead.
Forum: Themes and Templates
In reply to: CSS: Strange spacing below display:table divAhh I had wp_footer(); below my closing html. Turns out the space was from the cookies for comments plugin. Fixed now, Thanks guys!
Forum: Themes and Templates
In reply to: font change for twenty twelveThere are many ways you can do this, here are two:
Easy method:
Find the font you want here: https://www.google.com/fonts
Download this plugin: https://www.ads-software.com/plugins/wp-google-fonts/
Target the header and tagline in the Custom CSS section.More advanced method:
First, you’ll want to make a child theme so your changes do not disappear when you update your theme, see this page: https://codex.www.ads-software.com/Child_ThemesNext, you’ll want to find the web font you want, I recommend Google fonts: https://www.google.com/fonts and they’re free
Then, you’ll want to enqueue the script in your functions.php file and set the fonts in your child themes style.css file
Forum: Fixing WordPress
In reply to: How to reduce nav menu heightThis should probably go in the Themes and Templates forum.
Can you provide a link so we can help?
Forum: Themes and Templates
In reply to: [Customizr] stick footer to bottomTry this:
html, body {height: 100%;} #main-wrapper { min-height: 100%; margin-top: -124px; } #main-wrapper .container { margin-top:124px; padding-bottom: 50px;} /* must be same height as the footer */ body footer#footer {position: relative; margin-top: -50px; /* negative value of footer height */ height: 50px; clear:both;} /*Opera Fix*/ body:before {/* thanks to Maleika (Kohoutec)*/ content:""; height:100%; float:left; width:0; margin-top:-32767px;/* thank you Erik J - negate effect of float*/ }
Let me know if that works. Thanks!
Forum: Themes and Templates
In reply to: [Customizr] stick footer to bottomYou shouldn’t need a wrap. Your body tag wraps everything and is set to height:100% already.
Forum: Themes and Templates
In reply to: [Customizr] stick footer to bottomDid you try https://www.cssstickyfooter.com/
Forum: Themes and Templates
In reply to: Please Help With Moving Sidebar from Left to RightNo problem, try adding this to your CSS:
body #content { float:left; } body aside#sidebar { float:right; }
Forum: Themes and Templates
In reply to: Theme Shuttershot ~ Custom Background Images on Pages?First, you have to create a child theme: https://codex.www.ads-software.com/Child_Themes
Next, you have to add some functions to your functions.php file to activate featured images for pages, and set the desired image for the featured image with: https://codex.www.ads-software.com/Function_Reference/add_image_size
https://codex.www.ads-software.com/Function_Reference/add_theme_supportThen you can set body tag to have a background image like this:
<body background:"url(<?php the_post_thumbnail('custom_size');)">
If all of that is over your head, you can try out this plugin: https://www.ads-software.com/plugins/background-per-page/
…or hire a developer.
Cheers!
Forum: Themes and Templates
In reply to: How to determine whether there is another postMaybe try something like this:
$num_of_posts = $wp_query->post_count; $posts_counter = 0; while (the loop) { <tr>{thepost}</tr> if ( ++$posts_counter !== $num_of_posts ){<tr>other stuff</tr>} }
Let me know if that works.