fixed height (Solved)
-
to anyone wondering how to set a fixed height in the simple rss reader plugin you have come to the right place, I found a fix. I tried finding the answer in forums and was nowhere so I figured it out on my own. This allows you to adjust the height so that it no longer resizes on its own.
version 2.5
open the file super-rss-reader/public/srr-js.js
on line 51
change the
height:’auto’I used height:’300′ and it worked well for my site. good luck!
if you have another version and it is on another line, look for a function similar to this in the js file.
/* * jQuery - Easy Ticker plugin - v2.0 * https://www.aakashweb.com/ * Copyright 2014, Aakash Chakravarthy * Released under the MIT License. */ ;(function ( $, window, document, undefined ) { var name = "easyTicker", defaults = { direction: 'up', easing: 'swing', speed: 'slow', interval: 2000, height: 'auto', visible: 0, mousePause: 1, controls: { up: '', down: '', toggle: '', playText: 'Play', stopText: 'Stop' } };
and just adjust the height from auto to the height you need.
- The topic ‘fixed height (Solved)’ is closed to new replies.