batharoy
Forum Replies Created
-
You should always update the theme as it may fix bugs or security issues.
I see that you use Jetpack, go into Jetpack options and activate the custom css module. You will then have a new area in Appearance to add your custom css.This is the code to add to change the size of the menu font.
.main-navigation ul li a { font-size: 1.1rem; }Forum: Themes and Templates
In reply to: advice on integrating wp blog and websiteI’m curious why you would want to link to static htm pages rather than create the pages in WordPress itself.
It would be very easy to create the 4 pages HOME(index) ABOUT CONTACT and BLOG within WP and add the content there.
That way if you ever change themes for any reason it change all the pages instead of just the blog. Be a lot less headache in the long run.Forum: Themes and Templates
In reply to: [zeeMagazine] make a page with no sidebars for printingChange your @media query to this.
@media print { #header, #secondary, #secondary aside, #tertiary, #footer { display: none; }The menus work fine for me using Chrome & Firefox.
Forum: Themes and Templates
In reply to: [Customizr] Adding text to the footerYou can add any standard HTML to the text widget. And you don’t need to add a title, you can leave it blank.
Forum: Themes and Templates
In reply to: [Theme: TwendyTwelve] Padding/decrease empty space.entry-title { margin-bottom: 0; } .entry-header .comments-link { margin-top: 0; } div.author-post-rating { margin-bottom: 0; } .entry-content img { margin-top: 0; } #secondary .widget-title { margin-bottom: 0; }Forum: Themes and Templates
In reply to: the_title() displays the last post's title on index pageDo not use the css editor unless you have a child-theme activated. If you change the original themes css, it will be erased if the theme is updated.
Forum: Themes and Templates
In reply to: How it worksForum: Themes and Templates
In reply to: [Expound] Change Font Size?Since you use the Jetpack plugin you can go into the Jetpack options and activate the custom css module. You should then have a new area under appearance for adding custom css.
Forum: Themes and Templates
In reply to: Syntax: License/*
Theme Name: Syntax
Theme URI: http://theme.wordpress.com/themes/syntax/
Description: Syntax is a theme designed with writing–and reading–in mind. With large, easy-to-read type, a fixed navigation menu, and a responsive design that looks beautiful on all screen sizes, it’s perfect for writers or bloggers who want a clean, sophisticated look and feel for their site.
Version: 1.0
Author: Automattic
Author URI: http://automattic.com
License: GPL v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/Forum: Themes and Templates
In reply to: [Flounder] Show tag lineYou are using a WordPress.com site. You will want to ask your questions on there forums.
These forums are for self hosted WordPress.org questions.
Forum: Themes and Templates
In reply to: [Twenty Thirteen] header image problemsYour current site header is set to a static 1600px.
.site-header { background: url(http://vexguardpestcontrol.com/wp-content/uploads/2014/02/VGBANNERnew.jpg) no-repeat scroll top; background-size: 1600px auto; }If you change the background size it will scale correctly.
.site-header { background: url(http://vexguardpestcontrol.com/wp-content/uploads/2014/02/VGBANNERnew.jpg) no-repeat scroll top; background-size: contain; }The downside is the text in the image becomes unreadable at smaller sizes.
Forum: Themes and Templates
In reply to: [Customizr] Color change of the menu bar and the body backgroundDo you mind sharing your email?
I will contact you thru your site. Posting emails here is against the rules.
Forum: Themes and Templates
In reply to: [Customizr] Color change of the menu bar and the body backgroundLooks like that happened when the font size was raised or because of all caps.
/*Adjust menu items to not wrap as soon*/ .navbar .nav > li > a { padding: 5px 12px 5px 12px; }You will probably find other little things that need tweaking, keep asking in here and I will monitor for new posts.
Forum: Themes and Templates
In reply to: [Customizr] Color change of the menu bar and the body background/*Submenu & pages color and background*/ .navbar .nav > li.current-menu-ancestor > a { color: #fff; background: #000; } .dropdown-menu > li.current-menu-item > a { color: #fff; background: #000; }I also notice the slider on your original page had a 960px width.
This will do the same on the new site if you want./*Slider width 960 and centered*/ #customizr-slider { max-width: 960px; margin: 0 auto; }