Extech
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Change width of all page contentsHi
Line no 398:
.post .entry.noDate {
padding-left: 15px;
width: 475px;
}remove the “width:475px;” and check.
Thanks
Forum: Themes and Templates
In reply to: [Pictorico] More CSS QuestionsHi breecrowder,
Its hard to tell anything what exactly you need to change on your site until you post your site’s url. Please share the URL of your site so that we can check that.
Thanks
Forum: Themes and Templates
In reply to: Logo is not aligned properly in sticky navbarAdd this to your css
#logo.table-cell { padding-top: 11px;}
Forum: Themes and Templates
In reply to: Quantity Number can't be seenHi
Can you add this style to your style-sheet.
.woocommerce .quantity .qty {
min-width: 80px;
}Thanks
Forum: Themes and Templates
In reply to: [Felynx Forest] Gallery with "Uneven" images is bad formattedTry this
.related-posts {
clear: both;
}Forum: Fixing WordPress
In reply to: Replacing widget text with image… Need help!Try this:
.sidebar h4.widget-title {
display: none;
}Forum: Themes and Templates
In reply to: [Minamaze] How to move Navigation below Slider?Hi
Core files means wordpress themes php files. Do not change anything if you don’t know how to work on them. You can also create child themes.
https://codex.wordpress.org/Child_ThemesThanks
Forum: Themes and Templates
In reply to: [Minamaze] How to move Navigation below Slider?I will suggest to edit the core files and bring down the navigation below slider. Css will create an issue in responsive mode.
Here is the answer if you want to try:
.page-id-12 div#header-links {
position: absolute;
bottom: -345px;
z-index: 9999;
}.page-id-12 div#slider {
margin-bottom: 50px;
}Forum: Themes and Templates
In reply to: [Minamaze] How to move Navigation below Slider?Can I have the url of your site?
Forum: Plugins
In reply to: [CSS] What is popular post in wordpressIs build with the theme that i am using. I purchased it from themeforest.
Name of the theme is Rigel.But the question is what is popular posts.
Thanks
Forum: Themes and Templates
In reply to: Sidewinder Theme FooterYou can download the whole theme and than try to find using some editor like Notepad++
If still no luck than access the database and replace directly there. Make sure to keep a backup of everything.
Hopefully this will work for you.
Forum: Themes and Templates
In reply to: Sidewinder Theme FooterTry to find the text in the admin panel. Most probability it would be under theme setting.
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] List of all subscriberI got it. Thanks a lot for your support.
Is there a way to show the list of all subscribers as we can see the list of all wordpress user without pop-up.
Forum: Plugins
In reply to: menu with scrollbar on sidebarWelcome
Forum: Themes and Templates
In reply to: [Minamaze] How to move Navigation below Slider?.home div#slider {
position: relative;
top: -70px;
margin-bottom: -40px;
}.home #header {
padding: 0;
position: relative;
top: 349px;
z-index: 999999;
}Can you try this.