codeManiac
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Simple Shop] Change White Background ColorHey sneed !
Would you please paste a link to your website ? I need to check few things in the css code to be able to help you
Forum: Themes and Templates
In reply to: Remove white background on posts and pagesbtw for the sidebar blank space, that would need some work at theme files level and your website from what I see is still fresh , nothing done yet so if you still need help with it let me know and I ll help you succeed 🙂
Forum: Themes and Templates
In reply to: Remove white background on posts and pagesglad 1 prob was solved 🙂
to remove author name etc look for :
.hentry header { border-bottom: 1px solid #f8f9fa; padding: 1.5em; }and add to become
.hentry header { border-bottom: 1px solid #f8f9fa; padding: 1.5em; display: none; }here is the result
Forum: Themes and Templates
In reply to: Remove white background on posts and pagesplz verify what you did and that you copied things or modified things correctly 🙂 if it worked with the inspection tool it works by directly modifying the stylesheet
Forum: Themes and Templates
In reply to: [Theme:Nevada]Size of Menu Textno worries it happens to anyone 🙂
Forum: Themes and Templates
In reply to: Update on website caused problems to templateBeIM try this :
look for#ht-gallery-grid { margin: 0 30px; }and add background to make it look like
#ht-gallery-grid { margin: 0 30px; background: #FFF; }I think this will solve it 🙂
Cheers !
Forum: Themes and Templates
In reply to: [Zerif Lite] How to do this effect?glad it worked ! until the next time 🙂
Forum: Themes and Templates
In reply to: [Zerif Lite] How to do this effect?Hey masheen !
Zerif lite uses bootstrap and a fixed navbar already and yes there is always a solution to any problem.it can be done using the following jQuery :
$(document).ready(function(){ var scroll_start = 0; var startchange = $('#AN_ID_WHERE_YOU_WANT_OP_CHANGE'); var offset = startchange.offset(); if (startchange.length){ $(document).scroll(function() { scroll_start = $(this).scrollTop(); if(scroll_start > offset.top) { $(".navbar-default").css('background-color', 'rgba(0,0,0,.9)'); } }); } });ofc you will have to wrap that code ( you need to wrap jQuery code when using it with WordPress ) and put the correct section ID of where you want the color to change.Maybe also paste your website link? that would be more helpful in case you didn’t know how to follow the solution 🙂
Cheers !
Forum: Themes and Templates
In reply to: Update on website caused problems to templateHey BeIM !
I don’t think the whitespace color can be a PHP problem it’s simply some css and you can get it back with the following :
in style.css search for
#site-container { margin: 0 auto; max-width: 1200px; padding: 0 30px; }and add background:#FFF; which makes it look like :
#site-container { margin: 0 auto; max-width: 1200px; padding: 0 30px; background: #FFF; }if you need anything else just ask 🙂
Cheers !
Forum: Themes and Templates
In reply to: [Theme:Nevada]Size of Menu Textinvisible question maybe? :p
Forum: Themes and Templates
In reply to: Remove white background on posts and pagesDon’t forget to use a child theme so this change doesn’t get discarded when you receive updates . I can see your style.css file here
http://www.tiranapubcrawl.com/wp-content/themes/eddiemachado-bones-9db85e4/style.cssbut paste only this
.hentry { background-color: transparent; border: none; border-radius: 3px; margin-bottom: 1.5em; }when I wrote ==> in front of some properties it was to explain what every property does , paste the code without explanation and it will work just fine 🙂
cheers !
Forum: Fixing WordPress
In reply to: Space between gallery thumbnailsromestylez what you did is reducing the width of the space containing all the gallery items 🙂 , in other words you reduced the width containing the gallery images and that’s a solution but one problem is, look at your website in mobile view.Don’t you think they are too close ? maybe you want to make it 70% or sthg like that? in the end it’s your choice but just make sure you consider mobile view too 🙂
oh and btw nice apartments, and I think I will be privileged to get good offer to spend holidays there right? 😀 if you need anything else let me know 🙂
cheers !
Forum: Themes and Templates
In reply to: [Afterlight] Center Align Media ImageYou are welcome LHFashion !
If you need anything else let me know
Cheers !
Forum: Fixing WordPress
In reply to: Space between gallery thumbnailsHey romestylez !
Can you please provide the website link? That makes things easier , a screenshot explains your problem but without a website answers can lack precision 🙂
Cheers
Forum: Themes and Templates
In reply to: Invisible Links! WTF?Hey rairose !
lol no need for swearing really all can be solved :p
ok the problem is caused by the property :
.textwidget a { color: #FFF; }in your style.css change it to the color you want :
.textwidget a { color: color_of_choice_here; }That’s for normal color and for hover
.textwidget a:hover,.textwidget a:focus { color: color_of_choice_here; }Cheers !