richarduk
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Childishly Simple] Header image doesn't link to home pageNope, you haven’t broken something, it’s an option I have to put in – it’s on my to-do list.
In the meantime you can hack your way around it by putting in something like
<a href="http://www.mybriliantsite.com">in Add HTML, javascript or shortcode above your top banner image and in Add HTML, javascript or shortcode below your top banner image put</a>Here’s some php to show your home url:
<?php echo '<a class="some-class" href="' . esc_url( home_url( '/' ) ) . '">Home</a>' . "\n"; ?>Well, it’s not the theme, it already has that php in it. I also tried 20/13 and it didn’t work with that either.
I got as far as this: Settings > General there’s a default folder to upload to and a ‘verify’ button to check the folder exists.
MP3 files must be less than 4 mb in size.
All I can suggest is the plugin support forum http://wordpress.org/tags/audio-player or maybe try a different plugin
‘Fraid I haven’t a clue about audio players unless someone else has any ideas π
<here showing their tagline when opening that site but now when i trying to open my site not showing as Example.com- tagline .>
Don’t understand this bit. ‘Cos earlier on you said ‘wow its working’ …..
Click on ‘Post Colors’ – there’s an option there to change the post title color.
For font size, have to use CSS – go to Add CSS, javascript or shortcode in the head (ignore this if you’re not sure), click on + sign on left, it opens out, in the very top box ‘Add CSS, javascript or shortcode in the head element of all pages of your website’ add this, changing number to suit:
[ Moderator note: please wrap code in backticks or use the code button. ]
<style type="text/css"> h2.post-title, h1#post-title { font-size:2em; } </style>Go to Advanced Top Image and type in titledescription
Your site title and tagline will appear on top of the header image. You can also change the color of the text in Advanced Top Image
Richard
Forum: Themes and Templates
In reply to: [Childishly Simple] increasing side panel widthsView Source and look for something like body class=”postid-4666 or body class=”page-id-1099
Then in Childishly Simple Options page look for Add CSS, javascript or shortcode in the head (ignore this if youβre not sure) >Add CSS, javascript or shortcode in the head element of all pages of your website.
Paste something like this in – the colors are to make everything clearer, remove them once sorted. Change numbers to suit, either pixels (e.g. 200px) or percentages (e.g. 10%)
<style type=”text/css”>
body.page-id-1089 div.left-sidebar {
width:200px;
background-color:red;
}
body.page-id-1089 div.right-sidebar {
width:100px;
background-color:yellow;
}
body.page-id-1089 div.content {
width:500px;
background-color:blue;
}
</style>If you’ve got more than one page that you want to apply the above to then it would go like this:
body.page-id-1089 div.left-sidebar.
body.page-id-1091 div.left-sidebar {
width:200px;
background-color:red;
}etc.
Forum: Themes and Templates
In reply to: [Childishly Simple] I cannot see the navigation barHi,
You have to create a menu for the navigation bar(s) to appear – start in Appearance / Menus
Richard
Forum: Themes and Templates
In reply to: [Childishly Simple] How do I change the header heightDo you mean the image that goes across the top of the site? If so go to Appearance/Header and upload an image or select it from the gallery. A white semi-transparent box appears above it – whatever that box covers becomes your header image. The box can be enlarged or shrunk by ‘dragging’ the little white squares on the edges or corners.
Let me know if this is what you mean.
Forum: Themes and Templates
In reply to: [Childishly Simple] edit won't publishHi, I can see that you’ve now selected the correct home page. However, the link isn’t working. When you write a post there’s a line of icons above the big box that you put your text into. The icon for a link is a bit like a 45 degree dumb-bell. It’s greyed out until you select some text. Once you’ve selected some text click on that icon and then paste in the url to your other site.
Richard, theme author
Forum: Themes and Templates
In reply to: [Childishly Simple] edit won't publishIt looks like you’ve chosen the ‘Advanced Blank Page’, which is really for people who know PHP and HTML.
Choose ‘Very Simple Home Page’ from the home page options. Click ‘Save’. Look in the left sidebar and there will now be an option to add a ‘Very Simple Home Page’. Click ‘Add a new home page’. Put your content in, and give the post the title ‘homepage’. Now click ‘Publish’ (blue button, right hand side of page’).
If this isn’t what you mean, let me know.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Product Images Blurry and not FittingLast bit of the puzzle (hopefully). Just remember to regenerate featured images or upload new ones.
.woocommerce .cart-collaterals .cross-sells ul.products li,.woocommerce-page .cart-collaterals .cross-sells ul.products li{width:auto;}
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Product Images Blurry and not FittingTry this at the bottom of plugins / woocommerce / assets / css / woocommerce.css
.woocommerce div.product div.images,.woocommerce-page div.product div.images,.woocommerce #content div.product div.images,.woocommerce-page #content div.product div.images{width:auto;}
.woocommerce .related ul.products li.product img,.woocommerce-page .related ul.products li.product img,.woocommerce .upsells.products ul.products li.product img,.woocommerce-page .upsells.products ul.products li.product img,.woocommerce .related ul li.product img,.woocommerce-page .related ul li.product img,.woocommerce .upsells.products ul li.product img,.woocommerce-page .upsells.products ul li.product img{width:auto;height:auto;margin-right:10px;}
.woocommerce ul.products li.product,.woocommerce-page ul.products li.product{width:auto;}
The plugin authors have been too specific with their css and as a result the inline styles don’t over ride the external stylesheet. It’s a problem that appears to have been around for a long time. Net result: you see blurry images as your thumbnail or whatever is enlarged to the default size specified in the external stylesheet, often 48% or nearly half the width of the page.
Forum: Plugins
In reply to: woo commerce: product page image too bigThe root problem that I see with the product page images is that Woocommerce have been WAY too specific in their stylesheet wp-content/plugins/woocommerce/assets/css/woocommerce.css?ver=3389
If you go through that stylesheet there are a lot of width:48%, one of which is .woocommerce-page #content div.product div.images
If they follow the same principle with all their other pages then their inline styles are not specific enough and are being over-ridden by the more specific external styles.
In fact in this particular instance it’s impossible to get any more specific as .woocommerce-page refers to the body element.
If an image is specified as 48% it will fill nearly half the page no matter what inline styles are set and if it was small it will enlarge and look blurry.
It’s easy enough to solve the above by changing 48% to auto in that stylesheet. Pasting the appropriate code at the bottom of the stylesheet doesn’t seem to work however as the stylesheet contains errors.
But this means that the stylesheet has to be altered at every WooCommerce upgrade.
It’s such a fundamental issue that it’s unbelievable that they haven’t solved it.
Forum: Themes and Templates
In reply to: [Childishly Simple] How to embed existing Spry Menubar 2?Hi Ann,
Just returned from holiday. Looks like you’ve solved your problems?
Richard
Forum: Themes and Templates
In reply to: [Childishly Simple] Menu link to home page errorYep. Well, possibly.
The home button will have been created manually by you. Therefore the likelihood is that you’ve put the wrong url in the menu.
If this doesn’t ring true then post me a a link and I’ll take a look.
Richard