Aims Infosoft
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Box display misalignmentHello,
=> You can add this CSS code into your stylesheet. It will fix your issue.
.filterable-portfolio li.portfolio_item .portfolio_item_holder .caption h3{min-height: 40px;}
Thanks!
Forum: Fixing WordPress
In reply to: Button “add new” in the plugin windows inextistantHello,
@lanobilienne1
=> Follow the below step to finding thewp-config.php
file.
Connect your site FTP > In your root directory you can seewp-config.php
file > Openwp-config.php
file > Put above mention code after/* That's all, stop editing! Happy publishing. */
this line > Save.Thanks!
Forum: Fixing WordPress
In reply to: Box display misalignmentHello,
=> Put below CSS code into your stylesheet. It works, shown into the Screenshot, [https://prntscr.com/rixhjy]
.filterable-portfolio li.portfolio_item .portfolio_item_holder .caption .excerpt{min-height: 88px;}
Thanks!
Forum: Fixing WordPress
In reply to: Button “add new” in the plugin windows inextistantHello,
=> Put below code into your
wp-config.php
file.define( 'DISALLOW_FILE_EDIT', false ); define( 'DISALLOW_FILE_MODS', false );
Thanks!
Forum: Fixing WordPress
In reply to: How to resize contact form text fieldHello,
=> Put below CSS code into your stylesheet. It works, shown into the Screenshot, [https://prntscr.com/rivfz5]
.page-id-14986 #msg form.wpcf7-form{text-align: center;} .page-id-14986 #msg form.wpcf7-form textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required{width: 42%;}
Thanks!
Forum: Fixing WordPress
In reply to: Media Not Showing after Migration (wrong URL)Hello,
=> You can try the below solutions.
1. Fixing Image Links after a WordPress MigrationOR
Thanks!
Forum: Fixing WordPress
In reply to: Change Color of CommentsHello,
=> Try below CSS code into your stylesheet.
.single-post .comment-body .comment-content{color: #DFC15E;}
Thanks!
Forum: Fixing WordPress
In reply to: Remove the words “Category Archive:” in TitleHello,
=> Put below CSS code into your stylesheet. It works, shown into the Screenshot, [https://prntscr.com/risql7]
#intro-core h1.page-title span span{display: none;}
Thanks!
Forum: Fixing WordPress
In reply to: Add New Plugin option disappearedHello,
=> Put below code into your
wp-config.php
file. It works.define( 'DISALLOW_FILE_EDIT', false ); define( 'DISALLOW_FILE_MODS', false );
Thanks!
Forum: Fixing WordPress
In reply to: How to make menu expandable without clicking arrow icon?Hello,
=> Put below CSS code into your stylesheet. It works.
ul#menu-menu-1 li:hover ul.sub-menu{display: block;}
Thanks!
Forum: Fixing WordPress
In reply to: Visual/Text tabs missing in text editorHello,
Log into your WordPress admin > WordPress Main Menu > Users > Edit(user with issue) > First Option Top of Screen is “Visual Editor”[https://prntscr.com/rgzmbb] > Unchecked the box > clicked save, and everything was fixed.
Thanks!
Forum: Fixing WordPress
In reply to: Icons show empty boxesHello,
=> Put below CSS code into your stylesheet. It works, shown into the Screenshot, [https://prntscr.com/rg90tw]
i.fa{font: normal normal normal 14px/1 FontAwesome !important;}
=> For this
fa-fa-angry
icon you should update “FontAwesome” version 4 to 5. Because of thefa-fa-angry
icon not available in version 4. [https://prntscr.com/rg92em]Thanks!
Forum: Fixing WordPress
In reply to: Text bug on all pages “Untitled”Hello,
Your pages showing “Untitled” name because you didn’t set page title so your theme automatically puts “Untitled” as the title. So, you can set page title to remove “Untitled” text OR put below CSS to remove/hide text.
header.entry-header.page-header{display: none;}
Thanks!
Forum: Fixing WordPress
In reply to: Removing Title from Every Page on LodestarHello,
There are two ways to hide the title from every page and showing the title as per page name.
Solution-1:
=> Put below CSS code into your stylesheet. It works, shown into the Screenshot, [https://prntscr.com/rapbga].custom-header{display: none;} @media screen and (min-width: 60em){#content.site-content{padding: 8.5em 0 0;}} header.entry-header h1.entry-title{text-align: center;}
Solution-2:
=> Remove custom header title from the homepage using this CSS,.page-id-2 .custom-header{display: none;}
=> Now, connect your site FTP > Go to/wp-content/themes/lodestar(your theme name)/components/header/ Open "header-image.php"
file.
=> In this file, you can replace this code<?php get_template_part( 'components/header/site', 'branding' ); ?>
with this code `<?php //get_template_part( ‘components/header/site’, ‘branding’ ); ?>
<header class=”entry-header”>
<?php the_title( ‘<h1 class=”entry-title”>’, ‘</h1>’ ); ?>
</header>` and save file.Thanks!
Forum: Fixing WordPress
In reply to: Hide Button Url on Hover@ttom15907 If that worked then please mark as resolved.