codeManiac
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Social Magazine] Posts with same heightI can’t simply guess which part, the only thing I know is it’s inside the loop 🙂 maybe by pasting the code somewhere I ll be able to be more precise
Forum: Themes and Templates
In reply to: [Social Magazine] Posts with same heighthmm… yes It’s possible but this can be done from the backend and modification will be in home.php file ( if we suppose these are normal posts not custom post types ). I won’t go deep into explaining this because it will only confuse you if you don’t know PHP. Unless you insist that’s another story 🙂
Forum: Themes and Templates
In reply to: How to delete the footer links?Hey ALL13784 !
Simply add display none to :
.site-extra { padding: 50px 0; padding-bottom: 15px; background-color: #E7E7E7; }to become
.site-extra { padding: 50px 0; padding-bottom: 15px; background-color: #E7E7E7; display: none; }Have a good day !
Forum: Themes and Templates
In reply to: Position page container!Hey sophie !
Now I know where to go if I need new interior design :-D.
Anyway, in your style.css modify this :.one-column #content { margin: 0 16% 0 21%; width: 100%; }to become :
.one-column #content { margin: 0 auto; width: 100%; }Cheers !
Forum: Themes and Templates
In reply to: [Social Magazine] Posts with same heightOk in your style.css and exactly line 134 you will find the following
.blog-block { display: inline-block; padding: 0.25rem; width: 100%; }add height:400px; which means the previous code becomes :
.blog-block { display: inline-block; padding: 0.25rem; width: 100%; height:400px; }I chose the value 400 to suit all your posts, at 350 px some posts become a bit too close to the borders but at 400 it seemed good to me.ofc you can play around with that value 🙂
Forum: Themes and Templates
In reply to: [Storefront] Spacin problem on Blog PageWhat about this ? http://imgur.com/8Q3naMh
That’s with max-width:90%;Go to your style.css and search for this part :
.col-full { margin-left: auto; margin-right: auto; max-width: 65.141em; }and change max-width to 90% to become :
.col-full { margin-left: auto; margin-right: auto; max-width: 90%; }And btw you can increase that 90% to the percentage you want until it meets your needs but trust me don’t try 100% there is always need to some spacing 🙂
Forum: Fixing WordPress
In reply to: How to add Pop Up Quotation BoxYou are welcome ! If you need anything else just let me know 😉 🙂
Forum: Fixing WordPress
In reply to: how to format comment section of blog postHi astephens !
You can inspect elements on one of the forms and apply your css in style.css to the classes or id of each element in the form i.e all name inputs for example will have id=”author” 🙂
That’s one solution. Another better solution is to go to the file “comments.php” and you will see the html parts of the form, add in some classes in the right place , then go to style.css , put your new class names and add properties to each one 🙂Hope this helps !:)
Forum: Fixing WordPress
In reply to: How to add Pop Up Quotation BoxHi Heeran,
First, your question isn’t silly.Everyone has some issues that he needs help with 🙂
To the solution now. With contact form 7 you get a shortcode right? i.e
[contact-form-7 id=”1234″ title=”Contact form 1″]
You simply need to copy paste that shortcode in the page where you want your form t appear.Go to pages and edit your home page ( depends on what you named your homepage ) and paste the code in the location you want.Cheers
Forum: Fixing WordPress
In reply to: Show more months in calendar widgetHi Nikodemsky,
Indeed it’s possible using
JQuery datepicker
and for how to implement it into wordpress use the following
Add JQ datepicker to wpcheers !
Forum: Themes and Templates
In reply to: [Storefront] Spacin problem on Blog PageHey jrubiogtz !
I don’t see any pic below. maybe you forgot to paste the link ? no worries it happens 🙂
Can you provide your website url ? this will help understanding what your problem really is 🙂Cheers !
Forum: Themes and Templates
In reply to: [Social Magazine] Posts with same heightHi Mujtim !
Can you please provide the website url ? This will make things easier and faster 🙂Cheers !
Forum: Fixing WordPress
In reply to: Change to responsive design – recommendations?Good morning Bad_Egg !
try changing the pages where you don’t want to see the blog sidebars using the following option http://imgur.com/dVOzQum ( it’s a screenshot, I thought it would make it easier to know exactly where to go )
Another solution is going to widgets menu and delete the widgets you don’t needI hope this helps, if not there is always a solution just let me know and we will take care of it 🙂
Cheers !
Forum: Fixing WordPress
In reply to: How to add seperator/border between content's on a postquick and dirty way is to add <hr> tag after your post content in your posts editor using text mode
Forum: Everything else WordPress
In reply to: How Make More than one website on wordpresshey Neel26 !
use Multisite