baranwal
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Custom HTML Block adds line breaksCould you please share how it looks in the preview part?
Forum: Fixing WordPress
In reply to: Removing grey border around imagesHappy to help you 🙂
Forum: Fixing WordPress
In reply to: Featured image in blog post too big (covers the top of the blog)Hi Nika,
It seems that there is a CSS style that will cause this error.
You can remove this CSS style from you code and it will definitely help you.Here is the CSS code that you have to find in your
style.cssfile which is located at directory pathwp-content/themes/alluring-ecommerce/style.css..post-thumbnail { width: 100%; max-width: 100%; margin-top: -60px; // just remove this line and keep all the lines remain as it is text-align: center; }Forum: Fixing WordPress
In reply to: Insert target=”_blank”Hi vvillarin,
Please try below code may be it can help you-
$output .= apply_filters( 'the_content_more_link', '<a href="' . get_permalink( $_post ) . '#more-{$_post->ID}" target="_blank" class="more-link">$more_link_text</a>', $more_link_text )Forum: Fixing WordPress
In reply to: Removing grey border around imagesYour images have some border CSS. Please try to find it in your code something like below
#gallery-10 img { border: 2px solid #cfcfcf; }for different images, these CSS styles will be different according to
gallery id.If you find these CSS styles in your code then remove it and it will help you.
And, if you did not find these styles in your code then please write below CSS code in your style file and it will help you to remove surrounding border from image-.gallery-item img { border: none !important; }Forum: Fixing WordPress
In reply to: having issues with WordPress in ChromeMaybe you have some extensions in your chrome browser that may cause this issue. Please disable all the extension of your chrome browser and then check your issue. maybe it can help you.
Forum: Fixing WordPress
In reply to: Captions not displaying properlyHappy to help you.
Forum: Fixing WordPress
In reply to: Captions not displaying properlyYou can write this CSS code to any CSS file that will load to your website.
Also, you can write the above CSS code in
style.cssfile whose path is as mentioned below –wp-content/themes/advanced-newspaper/style.cssForum: Fixing WordPress
In reply to: Captions not displaying properlyTry to write below CSS code-
figcaption { text-align: center; font-style: italic; font-weight: 600; }It will help you to align your image caption text to center, italic and bold.
Forum: Fixing WordPress
In reply to: Language Website VS. Language DashboardHere, take a look to Change wordpress site language without changing the admin dashboard language. May be it can help you to figure out your problem.
Forum: Fixing WordPress
In reply to: white space over my page which follows while I scrollI think your page has a google auto placed Ad in it. In auto placed ad google always place the Ad to that place which is more interactive with the user. Please find out the Ad and replace it so, it will help you with your website navigation element. You can also search if any
divhaving classgoogle-auto-placedis present in your header section of the page or not.Forum: Fixing WordPress
In reply to: Moving search buttonYou can align both the form input box and buttons using below CSS code –
form.es_subscription_form{ display: inline-flex; }This CSS only works for subscribe form if you want to align your search form too then please check my previous answer(mentioned above in your question).
Forum: Fixing WordPress
In reply to: Cannot share link to FacebookHappy to help you 🙂
Forum: Fixing WordPress
In reply to: Moving search buttonAdd below CSS code –
form.search-form{ display: inline-flex; }It will help you to align your button with your search input field.
- This reply was modified 6 years, 5 months ago by baranwal.
Forum: Fixing WordPress
In reply to: Wasting time with featured imagesHappy to help you 🙂