wpressdr
Forum Replies Created
-
Forum: Networking WordPress
In reply to: In subsite sites on multisite index.php missingWhat should i have to place in index.php?
Forum: Themes and Templates
In reply to: [Sela] table-hover not workingHi,
Bootstrap css file is missing in this folder https://www.fabolic.org/Vdt/wp-content/themes/sela/css/
you have to upload minified version of bootstrap css file to above directory.Forum: Themes and Templates
In reply to: [ResponsiveBoat] Images don’t showHi,
where you have upload the image or where its not showing?
If you have uploaded the image to media library only. Media library images not appear untill you add them to a specific page or post.
which theme your are using if it’s not default one then switch to default one.
Forum: Themes and Templates
In reply to: [Sela] table-hover not workingHi @ariane98,
can you please share page link?
Forum: Themes and Templates
In reply to: link opening modification in my themeHi @neopat,
Can you please share the link where the social icons appearing?Forum: Themes and Templates
In reply to: Thumbnail Image for Posts is either Cropped or ResizedThis is cropped due to theme setting as image size is specified width=295px and height=”190″ that why wordpress crop the image and display image as per specified size.
Now go to setting > media and changes the thubnail images width and height to width=295px and height=310px and good to.
Forum: Themes and Templates
In reply to: [Quest] Place featured image to content area.You can add media file like image, audio, video into content area of a post or page by
Add Media
button above the post or page editor. After selecting image or media files from media library or from your computer you can set setting like size, attachment, alignment.
Forum: Themes and Templates
In reply to: link opening modification in my themeHi,
This is how links are added to the site to open in the same window
<a href="https://mywebsite/?page_id=58" target="_self">HERE GOES THE LINK TEXT VISIBLE TO SITE VISITOR</a>
To open link in new Window change target to blank
<a href="https://mywebsite/?page_id=58" target="_blank">HERE GOES THE LINK TEXT VISIBLE TO SITE VISITOR</a>
Forum: Themes and Templates
In reply to: [Enigma Parallax] shape of enigma_blog_thumb_wrapperHi,
You don’t need to out commenting the width of .col-md-4 as its not a better way. You just assign the width to that specific div or element.Forum: Fixing WordPress
In reply to: Adding a fixed header to my Wp blogHi,
Add this css to style.css
.header-wrapper { position: fixed; width: 100%; z-index: 999; } .header-wrapper.sticky img { height: 54px; margin-top: -10px; }
Add this code in header.php
$(window).scroll(function() { if ($(this).scrollTop() > 1){ $('.header-wrapper').addClass("sticky"); } else{ $('.header-wrapper').removeClass("sticky"); } });
Sticky header on scroll looks like this
https://prntscr.com/cee7pz- This reply was modified 8 years, 7 months ago by wpressdr.
Forum: Plugins
In reply to: Yoast breadcrumbs is not displaying correct page titleGot fixed by myself.
The issue was due wp_reset_query(). You have to reset the wp_query after while loop where ever you WP_Query.
Forum: Plugins
In reply to: [W3 Total Cache] Restore W3 Total Cache to Default SettingsHi,
As W3 total cache plugin has feature of import/export configuration.Install w3 total cache plugin on any other site and export setting with default setting and then import those setting to required site.Forum: Installing WordPress
In reply to: Choose languages on installHi,
Simply redirect user to WP installation page, WP ask user to select language for installation.
Forum: Installing WordPress
In reply to: Cannot install WordPress on GoDaddyTo Install WordPress on Your Hosting Account
- Log in to your GoDaddy account.
- Click Web Hosting.
- Next to the hosting account you want to use, click Manage.
- In the Popular Apps section, click WordPress.
- Click Install Now.
- Complete the on-screen fields, and then click OK:
- Domain — Select the domain on your account you want to use.
- Directory — Enter the directory after the domain name where you want to install WordPress.If you want the domain name itself to use WordPress, the directory field should only have “/” entered.
- Enter a Username, a Password (and its confirmation), and an Email Address.
WordPress will be installed to your hosting account with the options you selected within 24 hours. When it is complete, you will receive a confirmation email.
Forum: Fixing WordPress
In reply to: How to change font color?Hi,
Share your site link and which color you want to apply?