Adyfico
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: I want a blog, not a websiteHi,
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 necessaryForum: Fixing WordPress
In reply to: Woocommerce Custom Size pluginHi,
The WooCommerce extension ‘Measurement Price Calculator” appears to.
Check out this demo – enter custom length and width (in feet).
Forum: Fixing WordPress
In reply to: Custom Post Preview GridHi,
I haven’t tried it, but the WP 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
In reply to: CSS TransitionLooks like the class name your going after is:
.featured-content-our-latest-articles featuredpost widget featured-contentIt might be easier to use the ID:
#featured-content-2 article { ... }- This reply was modified 9 years, 1 month ago by Adyfico.
Forum: Fixing WordPress
In reply to: Lining up my Tagline with my new LogoHi,
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
In reply to: Quick LinksHi,
‘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;
}