• Hello, i’m using your plugin to show my “recommended pages”.

    https://prntscr.com/m92z45

    You can see the arrow. I’ve added the custom code in my header.php, but i want to add this option for Title in the plugin.

    What will be the code and which file need to be edited, so i can add this on the plugin?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author simonpedge

    (@simonpedge)

    I’m sorry, but I don’t really understand the question.
    Can you please provide more specifics?

    Thread Starter qnkov

    (@qnkov)

    The Border and the text “Препоръчваме”, i have added them in my header.php. But i want this code to be in the plugin, so i can delete it from header.php. In short, the plugin to show this instead my header.php, beacuse when i’m loading the page… there is some delay and first that shows is the white border with the text, then comes the slider.

    Plugin Author simonpedge

    (@simonpedge)

    Slide Anything does not cater for adding text/headings before or after the slider.

    But what you could try is using CSS “:before”:

    #SLIDER_ID:before {
    	content:'HELLO WORLD!';
    	display:block;
    }

    (replace ‘#SLIDER_ID’ with the CSS ID of your slider)

    Thread Starter qnkov

    (@qnkov)

    Where to add this? In which file, plugin or? And is it going to work like my code? Thanks.

    Check what i have added to header.php of my theme.

    </div>
    <div style="width: 100%; position: relative; padding-top: 25px; margin-bottom: 10px;" class='slider-container'>
         <span style="position: absolute;top: 0;left: 0;background-color: white; padding: 4px 14px; color: black; font-family: 'Oswald'; font-weight: 550; font-size: 16px;" class="title">Препоръчваме</span>
                <div class='slider-bgr'></div>
    <?php echo do_shortcode('[slide-anything id="8864"]'); ?>
    				</div><?php>
    • This reply was modified 5 years, 10 months ago by qnkov.
    Plugin Author simonpedge

    (@simonpedge)

    You add the CSS changes to your Theme’s ‘style.css’ file.

    Go to ‘Appearance’ then ‘Editor’ in your WordPress Dashboard.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How can i add this, thanks?’ is closed to new replies.