Giulio Daprela
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Editing the content of a custom footerFor menu out of the header you mean the menu on the sidebar, or the horizontal menu under the header?
Forum: Themes and Templates
In reply to: [zAlive] Trouble creating the child themeIf you are not technically skilled you can try the easy way with this plugin:
https://downloads.www.ads-software.com/plugin/orbisius-child-theme-creator.1.0.3.zip
If you prefer the hard way ??
Forum: Themes and Templates
In reply to: Editing the content of a custom footerGenerally speaking, you should copy the file footer.php into your child theme, and then edit this so that the functions inside it don’t show anything. If there is another php file that generates the footer content you should edit this one in the same way. The files in the child theme override those in the parent theme, so this should do the trick.
Forum: Themes and Templates
In reply to: [Orbit] Size of logo on headerThis code added to your custom CSS will probably do the trick, it worked on my pc.
#logo img { width: 100%; }
Forum: Themes and Templates
In reply to: [Customizr] Change the colorIt’s hard to say with no information. Can you post the CSS that you used?
Forum: Themes and Templates
In reply to: [Customizr] How to adjust the height of the slider?I’m afraid this is as far as I can go. I’ve analyzed the file and I don’t find any other places where the height of the images is set. The theme code is also well documented, but it says nothing about this. There are no variables, no options, nothing. You must either contact the developer and ask him for help, or use a slider plugin.
Forum: Themes and Templates
In reply to: [Customizr] How to adjust the height of the slider?The height of the image is coded in the PHP file class-header-slider.php.
If you want to change it, create a child theme and change the value in that file. I’ve found at least three lines of code that set this value. You have to change them all to be on the safe side.
Forum: Themes and Templates
In reply to: [Expound] TransparentYou can use the directive
opacity: NN;
Where NN is a number between 0 and 1, where 0 means totally transparent, 1 totally opaque, and anything in between a different grade of transparency.
The social icons are from the plugin social ring, I believe.
Forum: Themes and Templates
In reply to: [Customizr] How to adjust the height of the slider?Go under the Appearance menu and choose the option Customiz’it. Under ‘Front Page’ there’s a check box that allows you to give full width to the slider.
Is this that you want?
Forum: Themes and Templates
In reply to: Gamepress PROThe problem is the theme in my opinion. There’s an inline CSS style, which by the way is considered bad practice today. The problem is that the instruction is wrong.
This is the html line of an image:
<img class="attachment-article-thumb wp-post-image" alt="rmfs" src="https://www.basketballcolorado.com/wp-content/uploads/2013/09/rmfs.jpg" style="width:NaN%;">
The directive
style="width:NaN%;"
doesn’t work because NaN% is an invalid value. If you replace that with 100% it works. Provided you have a child theme in place, add to your custom CSS the following instruction:.attachment-article-thumb.wp-post-image {
width: 100%;
}If that doesn’t work, try this one:
.attachment-article-thumb.wp-post-image {
width: 100% !important;
}Forum: Themes and Templates
In reply to: [Customizr] Show 2 Silders in homepageYou could for example use a plugin like meteor slides for the bottom of the page. It allows you to add the slideshow in the form of a shortcode, so you can put it wherever you want. For the top you can keep the slideshow that comes with the theme
Forum: Themes and Templates
In reply to: [Montezuma] Border color as opposed to whole page colorYou’re welcome, happy to see your enthusiasm ??
If you need help with the next step just write here.
Forum: Themes and Templates
In reply to: [Montezuma] Border color as opposed to whole page colorBy the way, I just noticed that the instruction is wrong. There’s an hyphen missing. It’s not
background color
but
background-color
Forum: Themes and Templates
In reply to: [Montezuma] Border color as opposed to whole page colorWhen I visit your website, over the header I can see this CSS instruction:
‘container_color’ = ‘#000033’,
This indicates that for some reason this instruction is not interpreted as CSS but as normal text.The alignment of the elements in your code has no influence. Sometimes the CSS instructions that you add to your custom CSS are overridden by higher level CSS instructions. Without going into much details on how CSS works, you can try to add the !important directive, it usually works.
background color: #000033 !important;
Forum: Themes and Templates
In reply to: Adding a Paper Looking TextBoxThere are also a few plugins that do the work for you.
Check out this plugin