Sajid Manzoor
Forum Replies Created
-
Forum: Themes and Templates
In reply to: links with iconsOk pu19042012
let me check xtheme, analyze your theme and then i will send you feedback
Forum: Themes and Templates
In reply to: [Vantage] [Urgent] Remove Sidebar from Home PageHello @edgar-gmr
Sorry. I think i was messed up with some thing other and send you a wrong message. Message and image i sent you above was intended for your issue.Please create a new dummy page, add your meta slider shortcode there and share link so that i can check and analyze the issues..
Thank you
SajidForum: Themes and Templates
In reply to: links with iconsHello pu19042012
Please confirm are using a any page builder plugin or not.Forum: Themes and Templates
In reply to: links with iconshello,
Please share your link
You can also check this tutorial to create animated social iconshttps://bradsknutson.com/blog/css3-rollover-social-media-icons/
https://cssdeck.com/labs/tdjxv35n/Sajid
Forum: Themes and Templates
In reply to: [Dream Way] Changing ColorsHello
Add this is style.css.sidebar-footer-wrap { background-color: #fff !important; color: #000; } .sidebar-footer-wrap .widget-title, .sidebar-footer-wra a, .sidebar-footer-wra p{ color:#000; }
Hope this will fix your issue.
let me know if you still have questions.
Sajid
Forum: Themes and Templates
In reply to: [Storefront] Trying to put Shopping cart/link next to menuYou don’t need any CSS to do this.
Go to Appearance-> Menus select your main or top menu and then add a shop page menu at the end of the menu.Forum: Themes and Templates
In reply to: [Vantage] [Urgent] Remove Sidebar from Home PageHello
Please add URl in URL Text field.
See image at https://drive.google.com/file/d/0BwIWuJmCDI1vdENOeHFMNFc0eFk/view?usp=sharingForum: Themes and Templates
In reply to: [Customizr] Shrinked logo in header is too much smallPlease check in theme options.
Forum: Themes and Templates
In reply to: [Vantage] [Urgent] Remove Sidebar from Home PageHello @edgar-gmr
can you please confirm which them you are using now. so that i can reply you accordingly.Sajid
Forum: Themes and Templates
In reply to: [Spacious] Spacious child theme stopped workingHello @jules10622
Please provide your child theme directory and file structure screen shot.i will check this and let you know why this is not working.
Also please check your child theme index.php, single.php and home.php files and check is there any code in those files are they are blank.Thank you
SajidForum: Themes and Templates
In reply to: [Tracks] mobile logo/backgroundHello
You dont need to use any plugin
You can achieve this with HTML and CSSIn HTML write
Use
<div class="
logo-box-fullwidth”> </div>In CSS Use
.logo-box-fullwidth
{
width:100%;
height:100vh; /* 100vh will make div height same size as screen size */
background:url (some/image.jpg) center top no-repeat;
background-size:cover;
}
`Forum: Themes and Templates
In reply to: Want to know where $post gets saved into databaseYou can find this is posts table
In default WP installation it is wp_posts
For yours, please check table prefix_posts (you can see your prefix in wp-config.php )Forum: Themes and Templates
In reply to: [The Monday] Slider action button open slider postHello @khahina
User Advanced Custom Post type or Custom Meta Box Plugin to add a custom filed for external URL and the edit your code as per your requirements
or please share your website URL so that i can tell you how u can do this.
Sajid
Forum: Themes and Templates
In reply to: add_action on functions.php and 2 css filesYou can add multiple css files using same method.
See example belowadd_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); function theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'mystyle2-style', get_template_directory_uri() . '/mystyle2.css' ); wp_enqueue_style( 'mystyle3-style', get_stylesheet_directory_uri() . '/childthemestyle.css' ); }
Forum: Fixing WordPress
In reply to: Removing a div using child themeHello @bjarnijo90
Please share your website URL or theme name so that i can check and let u know how you can fix this.Sajid