Forum Replies Created

Viewing 15 replies - 31 through 45 (of 712 total)
  • Theme Author richarduk

    (@richarduk)

    The spacing is a bug or an oversight on my part – I have a bug fix page

    http://www.alchemweb.co.uk/bugs-fixes/

    The solution is to paste this into the very top options box as a temporary workaround:

    <style type="text/css">
    
    h1{
    margin: .67em 0
    }
    h2{
    margin: .75em 0
    }
    h3{
    margin: .83em 0
    }
    h4,
    p{
    margin: 1.12em 0
    }
    h5{
    margin: 1.5em 0
    }
    h6{
    margin: 1.67em 0
    }
    
    </style>

    The reason for all these CSS bugs is that I decided to make font sizes and font families easy to change in the Premium version of the theme. This meant going through the stylesheet with a fine toothcomb trying to simplify it. I was using ems, which are contrary. I used rems in a few key places to replace them. In the process I oversimplified and missed one or two bits out. As always, rectified in the next version.

    Menus – the only way at present is to remove all the menu items from the top menu but in ‘Manage locations’ have the top menu selected. Next version I shall change this. There is a WordPress code option to have a default menu of pages if no menu exists and this is the option that I chose for the top menu. But too many users find it confusing so I shall change it.

    Theme Author richarduk

    (@richarduk)

    ‘fraid I’m not an expert on WooCommerce (if that’s what you’re using). I just copied and pasted the snippets of code they provided to include them in my theme. I’m sure they have a forum where they’d know more about what’s going on.

    Theme Author richarduk

    (@richarduk)

    Your child theme’s css is within comments. CSS comments look like this:

    /* stuff */

    You need to remove those comments for that CSS to work. My fault – I didn’t make it clear in the theme. Rectified in the next update.

    The reason the width appeared to go was that you pasted the media styles into style-custom.css and those media styles have a width of 100%. They were meant to be example media styles only. You would need to create a whole bunch of them for different widths. A good starting point would be this:

    @media screen and (min-width: 600px)  {
    your css
      }
    
    @media screen and (min-width: 640px)  {
    your css
      }
    
    @media screen and (min-width: 768px)  {
    your css
      }
    
    @media screen and (min-width: 800px)  {
    your css
      }
    
    @media screen and (min-width: 980px)  {
    your css
      }
    
    @media screen and (min-width: 1024px)  {
    your css
      }
    
      @media screen and (min-width: 1280px)  {
    your css
       }

    A very useful tool is in Firefox and it’s called ‘Inspect Element’ (right click on the page and select ‘Inspect Element’.) The toolbar will probably appear at the bottom of the page and what you’re looking for is a square icon with an arrow in it. Click on that and hover your mouse over the page and a dotted line appears around the elements you’re hovering over. Click on the element and in the right hand side you’ll see the styles for that element, which can be turned on or off and adjusted, whilst in the left hand side you’ll see the HTML for that element.

    Another brilliant one (probably on other browsers but I use FF) is an ‘Addon’ called Webdeveloper. One of its many options is ‘CSS’. You can view all CSS on one page which makes it easy to see what’s going on.

    Theme Author richarduk

    (@richarduk)

    I’m not seeing the home-page-bottom-widget spacer etc. as gray but I accept that the div. shouldn’t appear if there are no widgets. My mistake – will rectify it in next update. I did extensive testing but never saw the div appear visually. An oversight.

    Table borders – that was a design decision. There’s a theme unit test where tables are inserted and I figured that in the test they looked pretty naff without borders. So I put the borders in and if I remember rightly they’re the same color as the text color. The CSS in the header is this:

    div.left-sidebar table, div.left-sidebar th, div.left-sidebar tr, div.left-sidebar td {border-color:#fffff0;}

    It ought to be be over-ridden by inserting the following in the very top options box:

    <style type="text/css">div.left-sidebar table, div.left-sidebar th, div.left-sidebar tr, div.left-sidebar td {border:none;}</style>

    or if that isn’t specific enough border-width:0

    The words not wrapping is a faulty design decision of mine, again rectified in next update. I put:

    table {word-break: break-all;}

    Somewhere during the testing phase I had tables that weren’t showing their contents correctly – I can’t remember the ins and outs of it, probably tables that were stretching beyond their content width because words were too long. Didn’t think that one through. So the temporary workaround is:

    table {word-break:normal}

    Won’t look good in Iphone. At the moment this isn’t a responsive theme for fixed layouts – fluid layouts are more responsive in the sense that they retain their proportional width. That’s an option that I’ll be adding in due course.

    The workaround will be to add something like this into the top options box (untested) or into a child theme’s stylesheet:

    @media screen and (min-width: 640px)  {
    div.wrapper {width:100%;}
    div.content {width:80%;}
    div.left-sidebar,
    div.inner-wrapper div.long-left-sidebar-background {width:10%;}
    div.right-sidebar,
    div.inner-wrapper div.long-right-sidebar-background {width:10%;}
    }
    
    @media screen and (min-width: 768px)  {
    div.wrapper {width:100%;}
    div.content {width:80%;}
    div.left-sidebar,
    div.inner-wrapper div.long-left-sidebar-background {width:10%;}
    div.right-sidebar,
    div.inner-wrapper div.long-right-sidebar-background {width:10%;}
     }

    Change percentages to px or ems or whatever as you wish.

    Update: the links to 404 pages doesn’t appear to be a theme issue. The theme shows the same link as the 404 url. It doesn’t show a broken or mangled link. So it’s something server-side, I suspect.

    Theme Author richarduk

    (@richarduk)

    The Advanced blank page is literally that – blank – and it’s intended only for those who know PHP and HTML.

    Your best bet is to try from a different angle. Copy the contents of home-page-simple-01.php and remove the central portion which begins with

    <div class="outer-home-page outer-home-page-simple outer-home-page-simple-01"> and ends with

    </div><!-- end outer-home-page outer-home-page-simple outer-home-page-simple-01 -->

    Now add your HTML etc. where this was and copy and paste the whole lot into home-page-blank.php

    The inside page you created – what did you click on to get to it (or not get to it)? Was it from the home page? Or was it from within the Admin area e.g. you created a Page then went to view it and it wasn’t there? If the latter then it could be a permalink problem (yo might have to resave the permalink page) or it could be because your test server (?) isn’t set up correctly.

    Theme Author richarduk

    (@richarduk)

    The layout is set higher up in the options page – there’s a row of images showing the sidebar choices e.g. one column, two column content left etc. This layout is universal to the site but you can turn those sidebars on or off on the home page i.e. the home page can be one column OR it can be the layout that you chose for the rest of the site. As yet it’s not possible to change the layout for individual posts and pages from the options page.
    Your child theme has a little bit of CSS in the child theme stylesheet, including the borders being removed from tables, but that CSS is commented out.
    UPDATE: just realised I need to change that style.css so that users don’t put css within the commented section. My mistake.

    Theme Author richarduk

    (@richarduk)

    If you’re using the Twenty Eleven theme and getting problems then it’s a WordPress issue

    Theme Author richarduk

    (@richarduk)

    Well spotted. I’ve fixed it and the updated version of the theme is going through the theme approval process. As a temporary fix you can either set the border to 0, use liquid width instead of fixed width or add 2 to the width in pixels of your site e.g. if your site is 1200px wide paste this into the very top options box:

    <style type=”text/css”>
    div.wrapper {
    width:1202px;
    }
    </style>
    You might have to manually type in the double quotes above rather than copying and pasting as I’m not sure if this forum mangles double quotes or not.

    Theme Author richarduk

    (@richarduk)

    List of changes is in the notes section at the very bottom. I should have made it more prominent.

    Details about menu in ‘menu colors’ section. Again, more prominent.

    Quote from there: ‘until you add a top menu a default top menu of Pages will appear. Until you add a bottom menu NO bottom menu will appear. If you create a menu without any menu items then no menu will appear.’ So create a top menu (Appearance/Menus/ Edit menus and ‘create a new menu’) then do nothing else, don’t add any menu items and go to ‘Manage locations’ (top of page) and assign your blank top menu to ‘Top Menu (Childishly Simple theme)’

    That should hopefully do it.

    Theme Author richarduk

    (@richarduk)

    I think my suggestion would be to upload four copies of the same image – i.e. identical – to the page that the screenshot shows, just as a test. I suspect that you have images of different proportions. The image will always fit into the width that is set. The height will then adjust accordingly. You might have to resize and then re-upload those images that don’t line up – there was one out of four in the screenshot.

    Theme Author richarduk

    (@richarduk)

    Have you gone to Woocommerce/Settings/Catalog? If you want your images to be a specific size you have to choose ‘hard crop’. Otherwise you have to upload your images basically the same size. From http://docs.woothemes.com/document/adding-product-images-and-galleries/ ‘if your settings are 100×100 and you upload a 300×600 image it will be resized to 100×200’

    Try uploading new identically sized images to see if that works. If you just change the settings on existing images nothing much will happen unless you regenerate thumbnails.

    Theme Author richarduk

    (@richarduk)

    Really? How? I know you said luck …. different plugins? Did you do anything different in any way? I haven’t got round to looking at this yet but I was thinking it might be something to do with functions.php, maybe some conflict, I don’t know.

    Forum: Reviews
    In reply to: [bbPress] Over-rated
    Thread Starter richarduk

    (@richarduk)

    My mistake. I spent half an hour on Google researching it post-installation.

    http://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum/
    ‘To allow automatic registration, go to Dashboard>Settings>General settings and under membership, tick “anyone can register”. Then in Dashboard>settings>forums tick the auto role, and ensure this is only at participant level.’

    I mistook that for ‘Users must be registered and logged in to comment ‘ in the comments section.

    The ‘pending’ issue was from some old posts that I discovered and the existence of an up to date plugin that implied that ‘pending’ posts were still an issue.

    Completely at fault. Amend it to five since I didn’t do a proper test. Trying to find the right forum software without spending hours on each one so install it, see if it’s intuitive, quick research on what doesn’t seem obvious and then onto the next. Vanilla looks best so far.

    Theme Author richarduk

    (@richarduk)

    Theme Author richarduk

    (@richarduk)

    Couple of thoughts:

    Background images can NOT be made responsive. Sadly. They’re fixed. Really irritating but that’s the way it is. It’s not a theme thing, it’s a CSS/HTML thing. The only way around it is to absolutely position your div containing text etc. above a standard image and give them both percentage widths.

    The Childishly Simple theme has an option to turn on custom background (scroll down to ‘Body background color’.) The background image will then fill the full width of the screen (don’t know if that’s what you were looking for) PROVIDED that the image is at least the width of the screen e.g. somewhere around 1200px wide

Viewing 15 replies - 31 through 45 (of 712 total)