khushbu desai
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Changing font type and thickness in woocommerce product tabsPLEASE PUT BELOW CSS IN TO MY SITES > APPEARANCE > CUSTOMISE > ADDITIONAL CSS
element.elementor-element-619ea096 .woocommerce-tabs .woocommerce-Tabs-panel { font-size: 15px; //change font size here }
Let me know if it works!
Forum: Fixing WordPress
In reply to: My WordPress website is only visible for logged in usersI have tried to access your site and I also faced the same error.
There are some possibilities of this error.
-
Try to deactivate the theme and check if theme is causing this error.
- If theme is not causing trouble then try to deactivate all plugins.
- Activate plugin one by one and check if a plugin is causing the error.
Forum: Fixing WordPress
In reply to: Removing Share Buttons On Portfolio Posts?Hi @joellepoulos ,
Could you please provide a link of your blog post with the share buttons not Gallery/portfolio page?
Hi @naderi9 ,
Each category has its own CSS class associated with it.
It usually has the following sysntx
body.category-mycategory { background-color:#EEE; fixed; color:#FFFFFF; } .category-mycategory .site { background:#232323; } .category-mycategory a { color:#CCCCCC; }
Here “mycataegory” is category name. You can try to change CSS code
Forum: Fixing WordPress
In reply to: How to add Pinterest Html tag for verificationHi Gayatri,
Below is the link for same type of question answered on same forum. It might help you.
https://www.ads-software.com/support/topic/accessing-the-index-html-file-to-add-html/Moreover, index.php file stored in theme folder. for e.g C:\[AMPSERVER]\www\[Wordpressfolder]\wp-content\themes\[themefolder]
Hope it helps you!
Hi @seelachsmedia,
Could you provide URL of the page?
Forum: Fixing WordPress
In reply to: Fading Image Edges CSSHi
I am not sure exactly what types of result you are looking for.
CSS: This you can edit through editor to change header image class.Gp to Appearance->Editor. It will open style.css for the applied theme.
#image-container {
box-shadow: 25px 25px 50px 0 white inset, -25px -25px 50px 0 white inset;}
Forum: Fixing WordPress
In reply to: How to edit themes locallyHi @joyously,
Dreamweaver changes files irrespective of the type of changes e.g changing CSS, database updating, or any function modification etc.
As widget details stores in database and customizer and dreamweaver share the same database them there might be an issue with dreamweaver cache as you can still see removed widget in live Dreamweaver.
See what happens after clearing Dreamweaver cache.
Below link helps you to clear Dreamweaver cache file.
https://webstunning.com/dreamweaver-cache/Forum: Fixing WordPress
In reply to: How to edit themes locallyHi
As per my reserach you can update theme in dreamweaver:
Following links may help youForum: Plugins
In reply to: [Members List Plugin] Problem with stylingHi there,
Could please URL of the page you mentioned?
Forum: Plugins
In reply to: [The Events Calendar] List View content box widthHi
There are two changes you need to make
-
Strike out padding in class post-wrap
.page .post-wrap {
/* padding: 40px 60px; */
}
.page .post-wrap, .post-wrap {
/* padding: 0 60px 60px; */
}-
Strike out max-width: 700px; in class tribe-events-loop as shown below:
.events-list .tribe-events-loop, .single-tribe_organizer .tribe-events-loop, .single-tribe_venue .tribe-events-loop, .tribe-events-day .tribe-events-loop {
/* max-width: 700px; */
margin: 0 auto;
}This how your page looks after doing above changes https://imgur.com/a/I0NsiOb
Forum: Networking WordPress
In reply to: Change from subdirectory to subdomainhi there,
Pleaes refer link
https://edesign-pro.com/how-to-change-a-wordpress-blog-url-from-a-subdirectory-to-a-subdomain/It might hel[ you.
Forum: Fixing WordPress
In reply to: Add anchor-tag to ALL links in submenuHi @jorgenm,
Could you please share your website URL?
Forum: Fixing WordPress
In reply to: Plugin where usedHi there,
Just come across the wpthemedetector which detects theme and plugin for entire site.
https://www.wpthemedetector.com/
Check your website with above website link. It may solve your query.
Forum: Fixing WordPress
In reply to: Plugin where usedHello barrywww,
From Plugin section, You can manage all your plugins.
Here you can see active, inactive plugins details.In addition, On right click on web page, select “Inspect”. On console area there are different tabs, select “Sources” where you can see Plugins used on the page.
See below image
https://imgur.com/a/gT7k8k0Hope it helps you