teeru@wensolutions
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Gazette] URGENT!!! Post Images Are Not Showing On The ThemeHello @omotayome1114
As far as I have checked locally the post image are shown.
Can you please share your site URL so that I can inspect browser source to provide some solution.
Hope you understand.
Best Regards!!
Forum: Themes and Templates
In reply to: Theme Enigma Slider IssueHello @ajghell
I am very happy to hear that your issue has been resolved.
Please mark this thread as resolved cause it will be easy for other users with similar issue to find their solution if seen this thread marked as resolved.Best Wishes!!
Forum: Themes and Templates
In reply to: Theme Enigma Slider IssueHello @ajghell
To reduce the size of your slider, at first you need to Admin Panel / Appearance / Customize / Theme Options / Theme General Options / Custom CSS.
Here copy and paste below CSS
div#myCarousel { height: 350px; width: 500px; left: 500px; } .carousel-inner > .item > img{ height:350px; width:500px; }
Here you can adjust height, width according to your requirement.
Hope this will resolve your issue.
Best Regards!!
- This reply was modified 8 years, 5 months ago by teeru@wensolutions.
Forum: Themes and Templates
In reply to: Add padding under headerHello @reimodels
To change the width of the content use the below css .
.entry-content { width: 855px !important; }
You can adjust the width according to your need.
And answer to your second question is , to prevent the content from being cropped you can use the below CSS
div#content { margin-top: 20px; }
Hope this will resolve your issue.
Best Regards!!
Forum: Themes and Templates
In reply to: [One Page] Anyway to export settings?Hello @ronr1999
To backup your settings you should create the child theme of your existing theme.
Below is the reference for creating a child theme.
Hope this will resolve your problem.
Best Regards!!
Forum: Themes and Templates
In reply to: [Baskerville] Browser Tab Not Showing Site TitleHello @soverymerry
I am very happy to hear that your issue has been resolved.
Please mark this thread as resolved cause it will be easy for other users with similar issue to find their solution if seen this thread marked as resolved.
Best Wishes!!
Forum: Themes and Templates
In reply to: [Baskerville] Browser Tab Not Showing Site TitleHello @soverymerry
To hide the site title from your site please try the below CSS.
h1.blog-title {
visibility: hidden;
}I hope this will resolve your issue.
Best regards!!
Forum: Themes and Templates
In reply to: Islemag powered by WordPressHello @gyoby
I am very happy to hear that your issue has been resolved.
Please mark this thread as resolved cause it will be easy for other users with similar issue to find their solution if seen this thread marked as resolved.Best Regards!!
Forum: Themes and Templates
In reply to: Title next to logo instead of belowForum: Themes and Templates
In reply to: Title next to logo instead of belowHello @crackerjacksky
To decrease the space between the header and the page you need to use the below CSS code.
header#masthead { margin-bottom: 23px; }
You can adjust the height according your requirement.
I hope this will resolve your issue.
Best Regards!!
Forum: Themes and Templates
In reply to: Title next to logo instead of belowHello @crackerjacksky
To place the title and subtitle next to your logo at first you need to add the Custom CSS though the plugin.
You can find many plugin to add custom CSS. Below link is the reference for one of the plugin.
After installing the plugin you will find the custom CSS in Admin Panel / Appearance / custom CSS.
Here copy and paste below CSS
.site-branding { overflow: visible; } p.site-title { position: relative; left: 124px; bottom: 160px; } p.site-description { position: relative; left: 124px; bottom: 150px; }
Hope this will resolve your issue.
Best Regards!!
Forum: Themes and Templates
In reply to: [Flat Responsive] ul.sub-menu > li for small widthHello @raymondlinn
To change the block width of the dropdown at first you need to add the custom CSS though the plugin.
You can find many plugin to add custom CSS. Below link is the reference for one of the plugin.
After installing the plugin you will find the custom CSS in Admin Panel / Appearance / custom CSS.
Here copy and paste below CSS
ul.sub-menu { width: 143px !important; }
Hope this will resolve your issue.
Best Regards!!
Forum: Themes and Templates
In reply to: [Modern Business] Submenu level and cssHello @delcour
To add another level submenu you need to go to Admin Panel / Appearance / Menus.
And then see the following attachment below for the further reference.
Answer to your second question is, to change the appearance of the submenu is at first you need add the Custom CSS through the plugin
.
You can find many plugin to add Custom CSS. Below link is the reference for one of the plugin.After installing the plugin you will find the custom CSS in Admin Panel / Appearance / custom CSS.
Here copy and paste below CSSul.sub-menu li { background-color: #ea798a; }
The above code will change the background of the submenu.
Hope this will resolve you issues.
Best Regards!!
Forum: Themes and Templates
In reply to: Islemag powered by WordPressHello @gyoby
To remove the “Islemag powered by WordPress” from the footer at first you need to add the Custom CSS though the plugin.
You can find many plugin to add custom CSS. Below link is the reference for one of the plugin.
After installing the plugin you will find the custom CSS in Admin Panel / Appearance / custom CSS.
Here copy and paste below CSS
.col-md-4.col-md-pull-8.powerdby { visibility: hidden; }
Hope this will resolve your issue.
Best Regards!!
Forum: Themes and Templates
In reply to: [Hueman] Change hand icon on related posts (Hueman)Hello @kathleenh
To change the hand icon on the related post at first you need to add the Custom CSS through the plugin.
You can find many plugin to add custom CSS. Below link is the reference for one of the plugin.
Custom CSS
After installing the plugin you will find the custom CSS in Admin Panel / Appearance / custom CSS.Here copy and paste below CSS
.fa-hand-o-right:before { content: "\f004"; }
Hope this will resolve your issue .
Best regards!!