albertstrun
Forum Replies Created
-
Forum: Themes and Templates
In reply to: storefront child theme brokenHi, I think the Template: field is case sensitive? if there is a mismatch there, that may cause some problems.
It’s worth a try 😀
Forum: Themes and Templates
In reply to: [Hostmarks] how to edit footer so its the same on all pages?Ahh yes; cart before the horse. I am hoping /assuming Paul is using a child theme?
Forum: Themes and Templates
In reply to: [Hostmarks] how to edit footer so its the same on all pages?Hi, I’ve just had a play around with the footer.php and came up with this solution. (deleted conditional php tags that were getting in the way).
<footer id="colophon" role="contentinfo"> <div id="site-generator"> <!-- Custom content START --> <!-- I've just deleted the php that displays your blog-name, etc. --> <a href="http://yourlinkhere.co.uk"> your Footer Link </a> <!-- Custom content END --> </div> </footer><!-- #colophon --> </div><!-- #container --> <?php wp_footer(); ?> </body> </html>Forum: Themes and Templates
In reply to: [Responsive] Color of Home Widget TitlesYes, it’s possible to change every aspect of responsive widgets.
To change the color of the homepage widgets only, the css used is:
.widget-title-home h3 {
color: red;
}
and just replace red with the color/hex of your choice.
Forum: Themes and Templates
In reply to: [Responsive] How to get the taglines on the front page blankHi,
You can use CSS to visually remove both, here’s how:
In your child theme folder, edit the style.css file.
For the h2 Subheading add this code:
.featured-subtitle {
display: none;
}And for the text below that add this:
#featured p {
display: none;
}after doing this the call to action button will jump up right underneath the h1 title however.
Forum: Themes and Templates
In reply to: [Business lite] [Theme: Business lite] effect slideshow homepageHi Ramzii,
The Business Lite theme uses the ‘orbit’ slider, which supports a few different effects; including fade.
Here’s how to change the effect manually:
- Find the slider code file, it should be “themes/businesslite/core/slider-actions.php“
- open it up and find:
animation: 'horizontal-push', - change this line to
animation: 'fade', - Save and done 😀
(I got the info from this site: http://www.zurb.com/playground/orbit-jquery-image-slider )