MrYawn
Forum Replies Created
-
Forum: Themes and Templates
In reply to: CSS not working for meI think I see what you’re trying to achieve, because the text is going beneath the image. Wouldn’t it be better to wrap the text in a separate div and float it so it doesn’t go beneath the image?
Forum: Themes and Templates
In reply to: CSS not working for meHi, try adding this code to the bottom of your themes function.php file
function filter_ptags_on_images($content){ return preg_replace('/<p>\s*(<a .*>)?\s*(<img .* \/>)\s*(<\/a>)?\s*<\/p>/iU', '\1\2\3', $content); } add_filter('the_content', 'filter_ptags_on_images');
this should remove all p tags from around images across your site.
Forum: Themes and Templates
In reply to: [Responsive] Locate css file@jan Cavan Boulas is right
/wp-content/plugins/contact-form-7/includes/css/styles.css
Forum: Themes and Templates
In reply to: [Virtue] Removing image stylingyour welcome ??
Forum: Themes and Templates
In reply to: [Virtue] Removing image stylingYour css file is located /NEWSITE2014/wp-content/themes/virtue/assets/css/virtue.css You could create a child theme as it’s best not to edit the themes css incase of updates, or overwrite it using:
[class*=wp-image] { -webkit-box-shadow: none !important; -moz-box-shadow: none !important; box-shadow: none !important; border:0px !important; }
Forum: Themes and Templates
In reply to: [Virtue] Removing image stylingare you able to change the styling in css?
Forum: Themes and Templates
In reply to: Remove Slider Right/Left Arrows on Nivo Slider and Hathor Themeyep, you should be cool with that.
Forum: Themes and Templates
In reply to: [Responsive] Locate css fileHi hpothinel,
Use chromes inspect elemt or firefox fire bug, right click on an element of your site you want to style, and “inspect element” you will see on the right side it will tell you the style file name, that will show you where the css file is located.
Forum: Plugins
In reply to: [Plugin: Wp to PDF enhanced] Can't open file on Mobile/Tabletsclick download icon here
Forum: Themes and Templates
In reply to: [Sixteen] Page Titles – First letter differentHi ctabacco,
The css stylings of the first letter is causing it to be different:
h2#page-title:first-letter, .archive h1.page-title:first-letter, .page h1.entry-title:first-letter { font-size: xx-large; text-shadow: #fff 2px 0px 1px; }
to change the colour only on the mobile version you would change the css in media query:
@media only screen and (max-width: 481px) { enter new css in here for mobile devices }
Forum: Themes and Templates
In reply to: Remove Slider Right/Left Arrows on Nivo Slider and Hathor Themeyou should also do this with
directionNav:true,
rather than hiding it in css, there are other controls there too you can control.
Forum: Themes and Templates
In reply to: Remove Slider Right/Left Arrows on Nivo Slider and Hathor ThemeHi caugas,
find this:
jQuery(window).load(function() { // nivoslider init jQuery('#nivos').nivoSlider({ effect: 'random', animSpeed:700, pauseTime:99999999999999999999999999999, startSlide:0, slices:10, directionNav:true, directionNavHide:true, controlNav:true, controlNavThumbs:false, keyboardNav:true, pauseOnHover:true, captionOpacity:0.8,
and change this:
controlNav:false,
Forum: Themes and Templates
In reply to: css edits are "almost" correctYour homepage has inline style, this needs taking out of your php page of:
#mainmenu-container { position: fixed; margin-top: 25px; top: 0px; left: 50; font-size: 25px; font-family: "arial"; width: 985px; z-index: 99; }
on your other pages you have the following which is missing the ; therefore position fixed doesn’t work:
#mainmenu-container { margin-top: 0px top:0px position:fixed; margin-top: 0px; font-size: 25px; font-family: "arial"; width: 985px; z-index: 99; }
they both need to be changed to:
#mainmenu-container { margin-top: 0px top:0px; position:fixed; margin-top: 0px; font-size: 25px; font-family: "arial"; width: 985px; z-index: 99; }
Forum: Themes and Templates
In reply to: Featured post auto scroll and grey bar removalHi totallysane,
try importance for colour and background-attachment fixed for bg image
#header { background-color: transparent !important; } .container { padding: 0 20px; background-image: url('https://evilgmr.net/wp-content/uploads/2014/04/EVOLVE-Screen-4.jpg'); background-repeat: none; background-attachment: fixed; }
Forum: Themes and Templates
In reply to: Creating template for custom post typeDo you have access to your site via FTP?