tryspecials
Forum Replies Created
-
Hi,
I have no way left but to seek help, not able to get it by myself after spending a lot of time reading through the theme code.
I am trying to get a specific layout for the post thumbnails. Not sure how to define a new design for the thumbnails. Something like the one here in creative layout
I am not sure how what is the part in class-content-post_list.php that I need to rewrite.
Thanks,
RohitThanks Martonno, this is very helpful. It worked wonderfully, I haven’t put it online yet but it works on local just perfect.
Yeah Martonno I tried that but I can only assign one image value to the “thumb”. I am trying to give a custom image of my own using something like below. So that I can change the image to whatever I want.
“158 => url(image url)”
Hi,
I have this working dev version here http://dev.tryspecials.com/
Since it is a dev version I have it protected with the below credentials.
username: guest
pass: guestI want to use a different image in the fourth section. How do I do that? Any help is great.
Thanks,
RohitSorry if I am too late to chime in. If you still need then this is how you can put custom credits. You need to put this in functions.php file (the best way to do that is to use a child theme, see this link excellent link here on how to create a child theme)
add_filter('tc_credits_display', 'my_custom_credits'); function my_custom_credits(){ $credits = ''; $newline_credits = ''; return ' <div class="span4 credits"> <p>· © Your Company Name Goes Here · All Rights Reserved ·</p> </div>'; }My ignorance. I didn’t add content underneath for scrolling but since I didn’t want it to appear with background showing everywhere (on the live site).
This is what I wanted (something that is in Eteroxee’s response here on this link) – http://stackoverflow.com/questions/16601590/how-to-make-div-bg-image-fit-full-screen-and-allow-scrolling-for-content-underne
I had come across that earlier but didn’t quite understand it. Now I made a few changes and everything is good as I wanted. It’s still on my dev version so haven’t pushed it here but it will be out soon. Thanks for your help Dave, thanks for trying with only half information from my end.
Just made these changes to the code and it happened.
body.home { background-image: url(/wp-content/uploads/2015/06/tryspecials.jpg); background-repeat: no-repeat; position: relative; width: 100%; background-height : 600px; }Thanks,
RSThat is my site link, should have included that earlier. The cover that i have added keep filing the page no matter how much content i add into the body. All I am trying to do is to make it only act as background for the first viewable frame.
Thanks.