Title: Adyfico's Replies | WordPress.org

---

# Adyfico

  [  ](https://wordpress.org/support/users/adyfico/)

 *   [Profile](https://wordpress.org/support/users/adyfico/)
 *   [Topics Started](https://wordpress.org/support/users/adyfico/topics/)
 *   [Replies Created](https://wordpress.org/support/users/adyfico/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/adyfico/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/adyfico/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/adyfico/engagements/)
 *   [Favorites](https://wordpress.org/support/users/adyfico/favorites/)

 Search replies:

## Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [I want a blog, not a website](https://wordpress.org/support/topic/i-want-a-blog-not-a-website/)
 *  [Adyfico](https://wordpress.org/support/users/adyfico/)
 * (@adyfico)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/i-want-a-blog-not-a-website/#post-8993917)
 * Hi,
 * The ‘website and blog’ vs ‘blog’ options can depend on the specific theme installed.
   Typically, the ‘blog’ option sets the home page to display the latest blogs, 
   while the ‘website and blog’ displays a static page as the homepage (with a blog
   page in the menu).
 * One way to change the ‘website and blog’ into a ‘blog’ is to set the blog page
   as home and delete any unwanted pages (e.g. services).
 * Change Homepage to Blog:
    In dashboard, navigate to Settings>Reading and change
   the ‘Front page displays’ to ‘Your latest posts’
 * Delete Unwanted Pages:
    In dashboard, navigate to Pages>All Pages>[unwanted page
   title], hover over unwanted page title and select ‘Trash’ Repeat as necessary
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Woocommerce Custom Size plugin](https://wordpress.org/support/topic/woocommerce-custom-size-plugin/)
 *  [Adyfico](https://wordpress.org/support/users/adyfico/)
 * (@adyfico)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/woocommerce-custom-size-plugin/#post-8993871)
 * Hi,
 * The WooCommerce extension ‘Measurement Price Calculator” appears to.
 * Check out this [demo ](https://demos.skyverge.com/shop/floor-tile-by-the-box/)–
   enter custom length and width (in feet).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Custom Post Preview Grid](https://wordpress.org/support/topic/custom-post-preview-grid/)
 *  [Adyfico](https://wordpress.org/support/users/adyfico/)
 * (@adyfico)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/custom-post-preview-grid/#post-8989395)
 * Hi,
 * I haven’t tried it, but the [WP Easy Columns](https://wordpress.org/plugins/easy-columns/)
   plugin allows you to use shortcuts to create custom columns/grids (e.g. 1/3 and
   2/3).
 * Also, it might be easier to break up the titles and images into 4 elements (2
   titles and 2 images), linking each pair to the respective blog.
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [CSS Transition](https://wordpress.org/support/topic/css-transition/)
 *  [Adyfico](https://wordpress.org/support/users/adyfico/)
 * (@adyfico)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/css-transition/#post-8989345)
 * Looks like the class name your going after is: `.featured-content-our-latest-
   articles featuredpost widget featured-content`
 * It might be easier to use the ID:
 *     ```
       #featured-content-2 article {
            ...
       }
       ```
   
    -  This reply was modified 9 years, 1 month ago by [Adyfico](https://wordpress.org/support/users/adyfico/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Lining up my Tagline with my new Logo](https://wordpress.org/support/topic/lining-up-my-tagline-with-my-new-logo/)
 *  [Adyfico](https://wordpress.org/support/users/adyfico/)
 * (@adyfico)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/lining-up-my-tagline-with-my-new-logo/#post-8989153)
 * Hi,
 * CSS can be a bit tricky, but yes, use the Customizer/Additional CSS. Changing
   the look/feel with CSS will depend on the theme, and the size of the logo, tagline,
   containers, etc.
 * Whenever there is an issue with a web page display, the first step is to use 
   out-of-the-box browser developer tools to analyze the elements causing the problem.
 * Press f12 while viewing the page in a browser and this should open a developer
   console in the browser.
    Find the ‘Inspect Element’ feature in the developer 
   console (e.g. Chrome: top right ‘box with cursor’ icon) Click on the element 
   of interest (e.g. your tagline) and view the CSS controlling that element in 
   the developer console.
 * In many cases, the display attribute is set to ‘block’, which will cause the 
   tagline to fall below the icon. Fix this by changing the display setting from‘
   block’ to ‘inline’ using the Additional CSS function in the Customizer.
 * Finally, set the margins and padding to create the desired effect. NOTE: be sure
   to check the spacing on smaller screen sizes (e.g. mobile) and different browsers
   to confirm solution works for all users.
 * The following CSS is overkill but should do the trick (with some tweaking). Check
   the class names of your logo and tagline; use the Inspect Element function to
   find the class names – e.g. <div class=”site-description”>Tag Line</div> where
   the class name is: site-description.
 * Paste this in the Additional CSS:
 * .custom-logo {
    display: inline; } .site-title-wrapper { display: inline; width:
   300px; } .site-title { display: inline; padding-bottom: 20px; margin: 0; margin-
   top: 10px; margin-left: -10px; position: absolute; font-size: 2em; } .site-description{
   display: inline; position: absolute; margin-top: 50px; } ______________________________
 * NOTE: in some cases, you may need to override the existing CSS with ‘!important’.
   Use this trick when CSS updates appear crossed-out in the developer console.
   
   e.g. .site-description { display: inline !important; position: absolute !important;
   margin-top: 50px !important; }
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Quick Links](https://wordpress.org/support/topic/quick-links/)
 *  [Adyfico](https://wordpress.org/support/users/adyfico/)
 * (@adyfico)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/quick-links/#post-8989035)
 * Hi,
 * ‘WP Ultimate Post Grid’ – If you are okay with displaying all pages or all posts(
   doesn’t allow filtering unless using paid version), then WP Ultimate Post Grid(
   by Bootstrapped Ventures) works. Also, you need to add additional CSS in the 
   customizer (for the same look as the example site).
 * ‘Content Views’ – Can filter, but doesn’t have aesthetics of example page (no
   hover displays text feature).
 * TO USE WP Ulitmate Post Grid:
    Activate ‘WP Ultimate Post Grid’ plugin Select‘
   Grids/Add New’ in left navigation of admin panel Name Grid Change ‘Post Types’
   to Pages (if you want to display pages as in example) or Posts (for posts) Change‘
   Template’ to Hover with Date Change ‘Layout Mode’ to Items in row (save grid)
   Navigate to ‘Pages’ in left navigation of admin panel Set the ‘Custom Image URL’
   in the WP Ultimate Post Grid panel for each page/post (save page) Navigate to
   page where displaying grid Place cursor on page to insert grid Select the ‘Red
   Window’ icon in the toolbar Select the grid name and click insert Update/Publish
   page Navigate to page customizer select Additional CSS Paste the following CSS
   code:
 * .wpupg-post-date {
    visibility: hidden; } .wpupg-post-title { margin-top:30px!
   important; font-size:1.5em !important; } .wpupg-grid div{ border-style:hidden!
   important; }

Viewing 6 replies - 1 through 6 (of 6 total)