batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Theme: Gold] Header text alignment.head-top-right h3 { margin-top: 5px; margin-bottom: 25px; }Forum: Themes and Templates
In reply to: [Theme: Gold] Header text alignmentEither one of those will work.
Forum: Themes and Templates
In reply to: [Theme: Gold] Header text alignmentTry a little right padding:
.head-top-right { padding-right: 30px; }Forum: Themes and Templates
In reply to: twentytwelve child theme responsive headerSince the images are custom coded, assign an ID of logo to the logo and a class of header-image to the others.
Then you can use css @media queries to display: none; on the header-image class.
You could also then use the logo id to center the logo for mobile devices.Forum: Themes and Templates
In reply to: [Customizr] Change Blog FontForum: Themes and Templates
In reply to: Sticky Navigation IssueDon’t know if this will work but try changing line 1 of nav2.js
jQuery(function() {Forum: Themes and Templates
In reply to: [Hiero] How do you change main navigation width to full widthActivate Jetpacks custom css module then add the following css.
.container { width: 100%; } .site-branding { margin-left: 8%; } #main { width: 84%; margin: 0 auto; }Forum: Themes and Templates
In reply to: How to find out if a theme is mobile ready?just put responsive in the search box
Forum: Themes and Templates
In reply to: [Theme Twenty Fourteen] Menu spacingRemove the boxshadow from #megamenu
#megamenu { -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; }Forum: Themes and Templates
In reply to: How to find out if a theme is mobile ready?Anything with the tag “responsive” should be mobile friendly.
Forum: Themes and Templates
In reply to: [Customizr] Hide the box around the main menuI see you use a child-theme.
Goes in the bottom of your style.css.navbar-inner { background: none; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; }Forum: Themes and Templates
In reply to: [Customizr] Logo picture instead of site titleIn your admin panel select Appearance > Customize
Then select Logo & Favicon.Forum: Themes and Templates
In reply to: Adding TOS and Privacy Policy to footer using iTheme2Copy your footer.php file into your child-theme folder.
In your footer.php file just above the </footer> tag.
Links would be constructed as so:<a id="tos" href="LINKTO TOS">Terms of Service</a> <a id="pp" href="LINKTO PP">Privacy Policy</a>You can then use css in the style.css to position & style.
#tos{ font-size: 16px; float: right: }etc…
This is css, since your using a child-theme you can put it at the bottom of the style.css file.
Forum: Themes and Templates
In reply to: [Customizr] Help! I deleted my site with the click of a button!Can you access the admin panel
http://www.example.com/new/wp-admin/