codeManiac
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Sydney] Header Slider HeightCan you make a screenshot of the problem? because I don’t see any white space when the page completely load
Forum: Themes and Templates
In reply to: Sidebar Box makinghmm ok then , see your style.css file?
look for this section of code
#header { width: 100%; background: #fff; box-shadow: 0 2px 3px rgba(0, 0, 0, 0.14); position: relative; }simply change the relative value with fixed
then add some padding to #main by pasting the following :
#main {
padding-top: 90px;
}90px seemed good value to me, ofc you can change it 🙂
Cheers !
Forum: Themes and Templates
In reply to: Responsive Image and textGood morning smijanic !
The solutions I provided worked in my browser but why they didn’t work when you directly pasted the code is sthg that I have no idea why , this is sthg I can guess only if am looking directly at the website. For what you do , contacting your theme author must be your 1 option not last one. So simply contact him 🙂
Good luck ! 🙂
Forum: Themes and Templates
In reply to: Responsive Image and texthmm weird try this instead :
@media only screen and (max-width: 767px) { div#colorcontentwrap4 h2 { clear: both; } }I don’t think I like how the theme is coded
Forum: Themes and Templates
In reply to: Responsive Image and textWell smijanic, he is busy or not that’s what he must do. When you buy a theme, you buy good support with it which means a good theme == a good theme + good support 🙂
Anyway add the following to your style.css file and it would solve the problem 🙂
@media only screen and (max-width: 767px) { #meta_author0 { clear: both; } }Forum: Themes and Templates
In reply to: Sidebar Box makingThere are many ways but let’s see if the simplest and easiest one will work for you :
try this plugin : Sticky Menu
Forum: Themes and Templates
In reply to: Making sliding images narroweryou welcome ! feel free to ask whenever you need help 🙂
Forum: Themes and Templates
In reply to: Responsive Image and textHey smijanic !
I saw your problem earlier today and its easy for sure but what causes a problem is the language and the coding it uses 🙂 I see it just as many squares and it doesn’t help distinguish which is the title and which is the content. Maybe if you make a post in English on your website that shows with the other posts I can help you achieve your goal
Cheers !
Forum: Themes and Templates
In reply to: Making sliding images narrowerno problem, there is always a solution 🙂
.item img { width:100%; }and now? 🙂
Forum: Themes and Templates
In reply to: Reduce spacing between widgets in sidebar in storefront & WOOFHey again raymond !
You couldn’t because 2nd and 3rd are 1 widget not 2 widgets 🙂
and to change distance between what you thought are 2 widgets simply paste the following.woof_container { padding-bottom: 7px; }and again it s up to you to decide the best value for the padding-bottom 🙂
let me know if achieved your goal 🙂
Forum: Themes and Templates
In reply to: Sidebar Box makingHey manubmxnsb !
Welcome to WordPress then 🙂
Will do my best here to succeed with your WordPress site
Ok here we go. Go to your dashboard -> appearance -> editor and open the style.css file and paste the following there#sidebar { background: white; padding: 20px; }and the result will be http://imgur.com/jWSwasc
if you want every section alone of the sidebar
do the same but paste the following code
.widget { margin: 0 0 1.5em; background: white; padding: 20px; }and the result will be http://imgur.com/uHgjDuA
let me know how it goes and I will be happy to provide you more help 🙂
Cheers
Forum: Themes and Templates
In reply to: Reduce spacing between widgets in sidebar in storefront & WOOFHey raymondhcw !
You can reach your goal by adding the following to your style.css
.widget { margin-bottom: 3em; }ofc change the 3em with what you think is a good distance 🙂
oh yeah next time don’t paste your server ip, use the domain name, just for the good of your website security 🙂
Cheers !
Forum: Themes and Templates
In reply to: Footer Menu verticalyDid you add the 2nd code ? add it after the other provided in the 1st solution with display:inline; not display:inline-block;
and here is a proof that if you follow just what I told you what you get
ofc deciding the margin value is up to you like I said before
Forum: Themes and Templates
In reply to: Footer Menu verticalyOk that’s easy too here you go 🙂
.widget_recent_entries ul li:nth-child(2n + 2):after, .widget_pages ul li:nth-child(2n + 2):after, .widget_categories ul li:nth-child(2n + 2):after, .widget_archive ul li:nth-child(2n + 2):after, .widget_recent_comments ul li:nth-child(2n + 2):after, .widget_nav_menu ul li:nth-child(2n + 2):after, .widget_links ul li:nth-child(2n + 2):after { content: "\A"; white-space: pre; }Let me know if you still need anything else 🙂
Forum: Themes and Templates
In reply to: Footer Menu verticalyHey hegi !
How can I help you while the website is still wet ? come on you are asking for what is impossible :p just joking here 🙂
Now to serious stuff Here is the solution :
.widget_recent_entries ul li, .widget_pages ul li, .widget_categories ul li, .widget_archive ul li, .widget_recent_comments ul li, .widget_nav_menu ul li, .widget_links ul li { display:inline; margin-right:10px; }ofc change that 10px value with the value you think looks good 🙂
Cheers and let me know how it goes 🙂