batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Theme: Blaskan:] How to Change Button Colors?Thats where the current_page_item comes in.
#nav .menu > ul > .current_page_item > a { background: blue; }Forum: Themes and Templates
In reply to: [Spun] i want the site title to jump to about meThis would require editing a core php file and would require a child-theme.
Forum: Themes and Templates
In reply to: [Theme: Blaskan:] How to Change Button Colors?For solid colors:
#nav a { background: red; } #nav .menu > ul > .current_page_item > a { background: blue; }To get a gradient follow the example:
background: -webkit-linear-gradient(red, blue); /* For Safari */
background: -o-linear-gradient(red, blue); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(red, blue); /* For Firefox 3.6 to 15 */
background: linear-gradient(red, blue); /* Standard syntax */Forum: Themes and Templates
In reply to: [Fashionistas] Remove comment sectionForum: Themes and Templates
In reply to: Adding exhisting theme to another websiteThat plugin did work for me when transferring to a new directory on the same localhost
Forum: Themes and Templates
In reply to: [Sundance] HeaderAdd this to a child-themes style.css, or use a custom css plugin.
.site-description { float: right; }That will move it just below your site title.
Forum: Themes and Templates
In reply to: Twent Fourteen Header WidthI’d still be interested to know how to set the background colour
#site-header { background: red; }Forum: Themes and Templates
In reply to: [Twenty Fourteen] Is it possible to centre the page title?Add this to a child-themes style.css, or use a custom css plugin.
.header-main { text-align: center; } .site-title { float: none; }Forum: Themes and Templates
In reply to: [Sugar and Spice] Adding Search Bar in Header and MobileFor the search:
Do want it in the top-right or bottom-right? That will determine placement of the code in the file. Either way copy your header.php file from your parent folder into your child folder.Shopping:
woocommerce does not work out of the box but following this video I did get it to work.I also had no problems with IE 11 on Windows 7.
Forum: Themes and Templates
In reply to: [Theme: Linen Pro] Problem with full width imagesThe code as I posted will allow the image to use 100% of the parent element. Just copy paste.
Forum: Themes and Templates
In reply to: [Theme: Linen Pro] Problem with full width images.entry.single img { max-width: 100%; }Forum: Themes and Templates
In reply to: [Sugar and Spice] Adding Search Bar in Header and MobileAdding the search function to the header requires editing a core php file. You will need to create a child-theme if you wish to do this.
@alex27 <RANT> Telling someone it’s not possible on a GPL licensed product is not true in this case. The functionality they asked for is a simple 1 line of code. If you, as the author, decide not to support that feature, it’s your choice. As you can see by the screen shot I was able to get a functioning search with 1 line of code.</RANT>
Forum: Themes and Templates
In reply to: [Magazine Basic] Magazine Basic, Image Widget formattingYou can put it at the bottom of your child css file.
Forum: Themes and Templates
In reply to: Twenty Fourteen blog posts titles in caps only?Install a custom css plugin or create a child theme.
Forum: Themes and Templates
In reply to: Twenty Fourteen blog posts titles in caps only?.entry-title { text-transform: none; }