Forum Replies Created

Viewing 15 replies - 1 through 15 (of 20 total)
  • Thread Starter BlackNeko

    (@blackneko)

    by testing i gotta do it manually instead of placing the link like this:

    <a href="#my-anchor">Title in Page 2</a>

    i place:

    <a href="https://mywebpage.com/?p=104&page=2#my-anchor">Title in Page 2</a>

    and it works! I also saw that with the function wp_link_pages(); you can know how many pages have a post. I think it is a matter that the function find_content_links not only read the current post page but read all pages. Maybe the problem is here add_filter('the_content', array(&$this,'find_content_links')); where the wordpress function the_content dont pass to the function the entire post, him seems to stops at the <!--nextpage--> or maybe is because you use add_filter I really dont know i dont know much about wordpress function or php.

    I think it is possible without much change the code to add this functionality to the plugin maybe like a optional xD with a checkmark in the config panel saying unify index on multipage post

    Thread Starter BlackNeko

    (@blackneko)

    wow your post work fine O.O now I do not understand where i wrote bad but thanks a lot ^^

    Thread Starter BlackNeko

    (@blackneko)

    Now works perfect ?? thank you!!! I think I’m the user has given you more work xD sorry

    Thread Starter BlackNeko

    (@blackneko)

    now works almost perfect ?? all i need is to adjust the x-height to 88 for full display image width. When I put the banner for the first time i use the image upload in the Raindrops Extend Theme Options and to show the whole image i have to put the option box height: 88.

    Thread Starter BlackNeko

    (@blackneko)

    hi ^^ i put it in functions.php at the very end of the file and dont work, i cant see any banner image. https://www.blackneko.net

    I dont know if i write the links wrong pls check it i put the banners in images in raindrops theme

    i try:

    $banner_images = array(
    				'/images/header1.png',
    				'/images/header2.png',
    				'/images/header3.png',
    				'/images/header4.png',
    				'/images/header5.png',
    			);

    and i try:

    $banner_images = array(
    				'images/header1.png',
    				'images/header2.png',
    				'images/header3.png',
    				'images/header4.png',
    				'images/header5.png',
    			);

    Thread Starter BlackNeko

    (@blackneko)

    It finally be able to displayed correctly the banner title image ?? but now i just like to ask if it will be possible to use the same php function or script used for make randam the header image in the banner image. The two do the same, show image right? why i cant use the same function for both copying the php function or script for the banner image in the header image? is located at the function.php? i cant find it.

    Thread Starter BlackNeko

    (@blackneko)

    thanks! i remove the web tittle ??

    Raindrops is not support randam banner image.
    If you need randam image, Please use header image.

    I dont want to use header image because i like too much the style of my banner image + header image ?? Then how i can put my banner(not random and only one banner ?? ) and make it display correctly? you can see right now its display very baddly ?? https://www.blackneko.net

    Thread Starter BlackNeko

    (@blackneko)

    i have to put color:#FFFFFF!important; and works good, without the !important dont work. Thanks for all the help and for teching my about child themes ??

    Thread Starter BlackNeko

    (@blackneko)

    I solve almost all problems right now ?? only two problems remain:

    1)The Post title, i have put the shadow code in .entry-title in the style.css is the same for the Page title, and its work, both Page title and Post title have the same shadow effect, but the font color of the Page title are white and is ok i like it, but Post title is purple like others links and i like to change it to white like Page title.

    Post Title
    Page Title

    2)And i like to change both to text-decoration:none;i try but i cant get this two little thinks soved.

    Thread Starter BlackNeko

    (@blackneko)

    ok nevermind i screw up all the theme so i delete and reinstall the raindrops theme, now with a fresh raindrops install i create the child theme and i started to add my customizations all over again to the child style.css including that function in function.php and work almost all of it.
    I try to Put shadows of different colors to some texts i asked at the beginning of this post but i really cant find where to put those in the style.css ??

    the other problem is i cant change anymore the color of the menu links and put to them text shadows, i do it previously by a code given by nobita in functions.php the links now are white. https://www.blackneko.net
    this is the code given by nobita where I had previously changed the shadows and text color. this code was inside the file functions.php

    /*Menu Bar Colors Settings*/
    	#access{
    		background:-moz-linear-gradient(top, #636363 0%, #1C1C1C 100%);
    		background:-webkit-linear-gradient(top, #636363 0%, #1C1C1C 100%);
    		background:-webkit-gradient(linear, left top, left bottom, color-stop(0, #636363), color-stop(1, #1C1C1C));
    	}
    	#access .children a,
    	#access .sub-menu a,
    	#access a {
    		color:#1A6FF8;
    		background:-moz-linear-gradient(top, #636363 0%, #1C1C1C 100%);
    		background:-webkit-linear-gradient(top, #636363 0%, #1C1C1C 100%);
    		background:-webkit-gradient(linear, left top, left bottom, color-stop(0, #636363), color-stop(1, #1C1C1C));
    		text-shadow: 0 0 0.2em #000;
    	}
    	#access .children a:hover,
    	#access .sub-menu a:hover,
    	#access a:hover {
    		color:#0AB8F7;
    		text-shadow: 0 0 0.2em #000;
    		/*background:#fff;*/
    	}

    I try to copy it to the child style.css but dont work at all.

    Thread Starter BlackNeko

    (@blackneko)

    Thanks a lot very helpful the child theme you show me ?? I did not know that exist! but right now i blowaway my blog because i create my raindrops-child theme and create style.css and here come the new problem i create a function.php trying to put in the code that nobita give to me to customize my menus panels. The code is this:

    <?php
    raindrops_register_styles("BlackNeko");
    
    function raindrops_indv_css_BlackNeko(){
    
    	$base_color_settings = raindrops_indv_css_dark();
    
    	$extend_color_settings =<<<STYLE
    
    	/*round corner*/
    	.rsidebar > ul > li,
    	.lsidebar > ul > li{
    		border:1px solid #555;
    		margin:5px 0;
    		border-radius:5px;
    	}
    
    STYLE;
    
    	return $base_color_settings . $extend_color_settings;
    }
    ?>

    so the question is how i can put this code in my child functions.php without the blog goes all blank page? sorry for my english

    Thread Starter BlackNeko

    (@blackneko)

    Thanks for helpme, I’m new in this world of html, css, wordpress and themes and i am little confused right now. I dont know what you mean by

    “If your theme Does not Have built-in custom CSS in the admin, make sure you are using a child theme or something like the Custom Code area”

    I really like that nobita who knows where things are located in his theme tell me where to place the shadows statements within function.php or style.css file so i can customize separate texts as previously indicated in the capture. Anyway i will try find it with firebug as you recommended me ??

    Thread Starter BlackNeko

    (@blackneko)

    I disable the send me a copy button and now works ok, seem like a bug.

    Thread Starter BlackNeko

    (@blackneko)

    From the copy of the email i recive i see that the from field have my hosting name, the to field is empty and the cc have the (send me a copy) adress so any suggestion why the to field dont get my contact adress the default in the wordpress page?

    Thread Starter BlackNeko

    (@blackneko)

    thanks a lot, the standard procedure work very nice for me. Thanks again ??

Viewing 15 replies - 1 through 15 (of 20 total)