Jaiveer Rawat
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to Customize Font in Texts Displayed w/ HTML Widget?stephencottontail: Okay, thank you for letting me know.
Forum: Fixing WordPress
In reply to: Menu hyperlinks colorJust add below CSS into your style sheet
.main-navigation a { color: #ffffff !important; }
- This reply was modified 7 years, 4 months ago by stephencottontail. Reason: please don't ask for money
Forum: Fixing WordPress
In reply to: How to Customize Font in Texts Displayed w/ HTML Widget?You have to 3 ways(both are cool!)
1) Just add text “Subscribe to our mailing list” in title box of the widget, if you did not understand this point so try 2 way.
See screenshot https://imgur.com/upGy5Ov2) Add below CSS into your style sheet, if you can’t do this so try my last way.
.widget-area #mc_embed_signup h2 { font-family: "Noto Serif", Georgia, serif !important; font-weight: inherit !important; color: #000000 !important; margin: 0 0 1.5em !important; letter-spacing: 0.04em !important; text-transform: uppercase !important; font-size: 16px !important; }
[removed offer to login to user’s site]
- This reply was modified 7 years, 4 months ago by Jaiveer Rawat.
- This reply was modified 7 years, 4 months ago by Jaiveer Rawat.
- This reply was modified 7 years, 4 months ago by stephencottontail. Reason: removed offer to log into user's site
Forum: Fixing WordPress
In reply to: link to a 404What is your website main/root URL?
If this is your website main/root URL(https://victorsworldnetwork.com) so you need to change the URL in DATABASE under wp_options table under option_name field
Change siteurl this https://victorsworldnetwork.com/smartshop to this https://victorsworldnetwork.com
Change home this https://victorsworldnetwork.com/smartshop to this https://victorsworldnetwork.com
It will solve all the broken links issues including front-end
Please let me know root URL
- This reply was modified 7 years, 4 months ago by Jaiveer Rawat.
Forum: Fixing WordPress
In reply to: Quick sytle questionCool, Thanks!
Forum: Fixing WordPress
In reply to: Quick sytle questionJust add below CSS into your Style sheet
.footballprofiles img { display: block; }
- This reply was modified 7 years, 4 months ago by stephencottontail. Reason: please don't ask for money
Forum: Themes and Templates
In reply to: How to linke the Image Files and Bootsrtap fileForum: Themes and Templates
In reply to: How to linke the Image Files and Bootsrtap fileHere is the correct method
For Image
<img src="<?php bloginfo('template_directory'); ?>/img/carsol2.jpg" alt="Header" width="1200" height="700" />
For CSS
<link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/css/bootstrap.min.css">
- This reply was modified 8 years, 4 months ago by Jaiveer Rawat.
- This reply was modified 8 years, 4 months ago by Jaiveer Rawat.
- This reply was modified 8 years, 4 months ago by Jaiveer Rawat.
Forum: Themes and Templates
In reply to: How to linke the Image Files and Bootsrtap fileHere is the correct method
`
/img/carsol2.jpg” alt=”Header” width=”1200″ height=”700″ />
<link rel=”stylesheet” href=”<?php bloginfo(‘template_directory’); ?>/css/bootstrap.min.css”>
- This reply was modified 8 years, 4 months ago by Jaiveer Rawat.
- This reply was modified 8 years, 4 months ago by Jaiveer Rawat.
- This reply was modified 8 years, 4 months ago by Jaiveer Rawat.
Forum: Themes and Templates
In reply to: [Virtue] White space between tags and long descriptionWelcome!
Yes, I know that how to change the tab location.
Just open the function.php(I hope you know that file location of function.php) file and add bottom code into your function.php file. But please take a backup of function.php file before adding the code.
// Removes tabs from original location
remove_action( ‘woocommerce_after_single_product_summary’, ‘woocommerce_output_product_data_tabs’, 10 );// Insert tabs next to gallery images
add_action( ‘woocommerce_single_product_summary’, ‘woocommerce_output_product_data_tabs’, 60 );- This reply was modified 8 years, 4 months ago by Jaiveer Rawat.
Forum: Themes and Templates
In reply to: [Virtue] White space between tags and long descriptionJust add bottom CSS into your style.css file.
.wc-tabs-wrapper, .woocommerce-tabs {
margin-top: 40px!important;
}- This reply was modified 8 years, 4 months ago by Jaiveer Rawat.