Category: Layout

  • How to Get Rid of the Storefront Purple Box

    In the Storefront theme, you’ll see a purple box momentarily displayed when menu items and some other elements are selected. To remove the box, use this CSS code: a:focus, button:focus, .button.alt:focus, input:focus, textarea:focus, input[type=”button”]:focus, input[type=”reset”]:focus, input[type=”submit”]:focus, input[type=”email”]:focus, input[type=”tel”]:focus, input[type=”url”]:focus, input[type=”password”]:focus, input[type=”search”]:focus { outline-color: transparent;}

  • Round Images

    Image blocks have an ability display round images. It’s a big, easily identified setting, but most people don’t use it most of the time. Of course overuse of round images would be too much of a good thing. Combining rounded images with ‘float’ also known as ‘align left’ or ‘align right’ can have a very…

  • How To Make a “Fancy Image”

    How To Make a “Fancy Image”

    Which do you like better? Or If you liked the first one, you’re all set. If you like the ‘snapshot’ style, then you’ll find it is very easy to implement in classic WordPress. You can add these lines to a CSS file: .fancyimg { border-radius:15px; box-shadow:8px 8px 8px silver; } Then you can add the…