codeManiac
Forum Replies Created
-
Hey Macros T !
Welcome to the club 🙂
Ok that function gridz_continue_reading_link is used to customize the read more link text. If you check again the same file and prolly close to where that function is coded you will see sthg like
add_filter( 'the_content_more_link', 'gridz_continue_reading_link ' );Here is more about it Customizing_the_Read_More
and reading about Filters would make things clearer than having me explaining it here which may make things a bit long :p
I hope this helps 🙂
Cheers !
Forum: Themes and Templates
In reply to: Making sliding images narrowerHey Laurisplus !
Ok there are many solutions but here is the simplest one :
reduce the height of the carousel and as result height of sliding images .This can be done by adding following to your style.css file
.carousel-inner { height:200px; }ofc change the 200px with the value you think its perfect
Let me know how it goesCheers 🙂
Forum: Themes and Templates
In reply to: [Make] How to change spacing between paragraphs.Hey Linda !
Maybe adding the following to your style.css would help
body { line-height:1.5; }Change the 1.5 value with what suits your needs
Cheers !
Forum: Themes and Templates
In reply to: banner on first page onlyLike Michael said remove is_home() , I didn’t mention it in my solution.Also for the header image, why did u hardcode it in HTML ?
try replacing this :
<img class="banner-img" src="http://store3.data.bg/deizi/banner.jpg" />with
<img class="banner-img" src="<?php echo get_header_image(); ?>" />OR
<img class="banner-img" src="<?php echo $header_image; ?>" />🙂
Forum: Themes and Templates
In reply to: [Twenty Sixteen] Change Line-Height?Hey Rebsy !
You were so close to the solution :-). Your changes didn’t work because the lines you want to add to are included in one H5 🙂
A quick solution is adding the following to style.cssh5 > a { line-height:1.5; }The result would look like http://imgur.com/gJF41Dd
Cheers 🙂
Forum: Themes and Templates
In reply to: [Sydney] Header Slider HeightGlad to hear that 🙂
Feel free to ask if you need anything else 🙂
Forum: Themes and Templates
In reply to: [Sydney] Header Slider Heightyep
To delete the lowest part which is the darkest one use
footer { display:none; }if you want to remove the part where it says ” proudly designer by “
check footer widgets and remove them , apparently the content there is built using widgets. If it keeps showing ( it can happen if a default value is used when widgets are not active ) do the following :.footer-widgets { display:none; }ofc if you want to remove both do both steps that I told you about 🙂
Cheers and don’t forget to mark it as resolved when done 🙂
Forum: Themes and Templates
In reply to: Custom Page BuilderHey kajdzo !
Maybe best way is to read the source code of free page builders that are available in the plugins directory 🙂
Cheers
Forum: Themes and Templates
In reply to: [Sydney] Header Slider HeightHey aminjaddi !
add the following to your style.css file :
div#slideshow { height: 1000px !important; }Note: replace that 1000px with the value that suits your needs 🙂
Cheers !
Forum: Themes and Templates
In reply to: banner on first page onlyForum: Themes and Templates
In reply to: [Virtue] Function get_header()Hey Fernando !
What template ? Can you please be more specific ? We can’t just guess
Forum: Themes and Templates
In reply to: [Melos] sticky header – menuHmm I doubt it but you may take a look at templates available by your theme and see if any of the other templates is similar to the front page, at least the closest one that goes with what you need 🙂
The templates available can be found like in here http://imgur.com/cVjSnL3I hope this helps 🙂 and don’t forget to change the post to resolved when done 🙂
Cheers
Forum: Themes and Templates
In reply to: [Melos] sticky header – menugreat 😀
If you need anything else just let me know 🙂
Forum: Themes and Templates
In reply to: [Melos] sticky header – menuForum: Themes and Templates
In reply to: Show a video before the readmoreThe problem is because your theme uses the_excerpt() instead of the_content() in the posts page 🙂 I 1st wrote how to go this way by changing the_excerpt with the_content but decided to give you the easier solution 1st 🙂
And yep for the train am sure it is 😀