Kraignos
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Help with removing border from image posts.Sorry, my answer was based on the light vostok theme. For you, it’s in wp-content/themes/vostok-theme/vostok/css/colors.css, line 105 :
.post img { border: 5px solid #FFF; }
Remove this line, or comment it out
Forum: Themes and Templates
In reply to: Help with removing border from image posts.Remove this :
border: solid #ddd 1px;
in the style.css file of your theme ( located in wp-content/themes/vostok-white/style.css )
Forum: Fixing WordPress
In reply to: Hide Alt Title on Thumbnail Mouseoverpetervandoorn is right, this would be the best and cleaner way to do this. And not so long if you don’t have many pics.
Forum: Fixing WordPress
In reply to: Nivo Slider Inserts Blank Image in SlideshowGreat !
And you’re welcome, glad I could help ??Forum: Fixing WordPress
In reply to: Nivo Slider Inserts Blank Image in SlideshowIf you need help, I can rewrite all the css code for the slider in a few minutes but you’ll have to wait until tomorrow in the evening. Going to bed now.
Forum: Themes and Templates
In reply to: Need help with fixing header and footerGreat ! You’re welcome ??
About the duplicate : is it named something like sidebar-page.php ? If so, you might have a file page.php (don’t remember exactly the name) calling
get_template_part("sidebar", "page");
which will first search a file sidebar-page.php and if it doesn’t find one, will then load sidebar.php… (in a nutshell)
For more info : https://codex.www.ads-software.com/Function_Reference/get_template_partForum: Fixing WordPress
In reply to: Nivo Slider Inserts Blank Image in Slideshowthis will reset your images trouble, but you’ll have to redo all the slider positionning. (backup your files before)
Forum: Fixing WordPress
In reply to: Nivo Slider Inserts Blank Image in SlideshowI think this file is the original one :
https://www.labratsstudio.com/wp-content/plugins/simple-nivo-slider/nivo-slider/nivo-slider.css
(It’s copyrighted 2011 and for the Nivo Slider v2.5.2)And this one contains your overrides :
https://www.labratsstudio.com/wp-content/themes/boldy/css/nivo-slider.css
(copyrighted 2010 and for v2.0)Or maybe the opposite ^^
It’s strange though, with suched crossed pathes, it looks like the slider is installed on your wordpress as a plugin, AND incorporated in your theme, but finally integrated by hand. I think you added the css to your theme to make it specific to it. Anyway, I digress.
I would suggest you to restore the original file from a fresh download of the plugin, but removing this css import in your <head>…</head> tags should do the trick :
<link type="text/css" rel="stylesheet" href="https://www.labratsstudio.com/wp-content/themes/boldy/css/nivo-slider.css">
Edit : Don’t know if it’s hard-coded in the header or dynamically hooked to the header by some plugin, so if you don’t find the reference to it in the header, just open the target file, and comment everything
Forum: Themes and Templates
In reply to: Need help with fixing header and footermight be in sidebar.php of your theme’s folder
Forum: Themes and Templates
In reply to: Need help with fixing header and footerNo problem, was trying things like “dev/pictures.html”, hu-hu =)
___<div id="sidebar"> <br> <h3>Search</h3>
This
<br>
tells your browser to make a new line before rendering the h3 title. It’s on every page of your blog, except the index, hence the difference.Forum: Fixing WordPress
In reply to: Nivo Slider Inserts Blank Image in SlideshowIt’s a pleasure ?? Couldn’t let such a great slider broken =)
Forum: Themes and Templates
In reply to: Sidebar – widget adding cssGreat ! So, problem resolved?
Forum: Themes and Templates
In reply to: Need help with fixing header and footerSorry but I don’t see which pages you’re talking about. The others pages are completely different and have no sidebar (they aren’t wordpress pages, right?)
Forum: Fixing WordPress
In reply to: Nivo Slider Inserts Blank Image in SlideshowIn fact it worked, but you don’t see the result because the nav is outside the window (too far away on the right)
Comment the 3 properties of this css rule:
.nivo-controlNav { bottom: -20px; left: 47%; position: absolute; }
in wp-content/plugins/simple-nivo-slider/styles.css
These images are used :
https://www.labratsstudio.com/wp-content/themes/boldy/images/slider_controlnav.png
https://www.labratsstudio.com/wp-content/plugins/simple-nivo-slider/images/bullets.png
but in a very strange way, not as featured on the official website. I let you watch the result, you’ll see what I mean… (did you changed this sliders’ css?)Also, if the bullets doesn’t suit your needs, you may want to play with these values, in the js init (the comments explain how to set them accordingly):
$('#slider').nivoSlider({ [...], controlNav:true, // 1,2,3... navigation controlNavThumbs:true, // Use thumbnails for Control Nav controlNavThumbsFromRel:false, // Use image rel for thumbs controlNavThumbsSearch: '.jpg', // Replace this with... controlNavThumbsReplace: '_thumb.jpg', // ...this in thumb Image src [...] });
Forum: Themes and Templates
In reply to: Need help with fixing header and footerHi,
When I go to a page that is not the index, some parts of the website shift downwards
Don’t see where exactly ?
Also, how can I put a break under the footer?
style.css, line 80
#footer { clear: both; margin-bottom: 50px; }
(for example)