InternetbureauPeerio
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Spun] Circle in other pagegive the Image a ID and go to css and make the border-radius to 360px;
CSS:
#yourgivenID{
border-radius:360px;
}
that will make your image a circle, but not responsive..Forum: Themes and Templates
In reply to: Image on the menu/HeaderGo to the navigation of your site.. Index.php, header.php or any other file related with the header… Than just add a image, give it a ID and change the properties via CSS.
Forum: Themes and Templates
In reply to: [Enigma] Bottom menuWhich menu do you mean? [Moderated] BTW I don’t see any menu on the bottom, so I think you mean the footer.. Go to your index file and delete the part where it says footer… or delete Footer.php but you will mess your site up if you won’t do any css..
Forum: Themes and Templates
In reply to: How do I add banner to site but make it not appear on phone?I think you want to disappear the Banner in phones… Did you already try on your phone? And it is not anything related with PHP.. Go in your CSS file to the Media Queries section… Try to find your header tag there, and try to modify your banner by giving it a ID..
Forum: Themes and Templates
In reply to: [Hueman] Structured Data on Google WebmasterThats not a really huge problem.. Also not even a problem in my opinion.. My website [moderated] is just ranking fine at the top spots of google.. You can fix it, but its not necessary. I don’t think it will be updated these days.. But it depends on the designer..
Forum: Themes and Templates
In reply to: [Theme: Frontline] How to adjust the primary navigation hover?I am using also a premium theme ([moderated]), but I can change it from the control panel of my theme.. Try to figure it out if you can do it via your control panel.. If you can’t try to search for ul li:hover in your css file.. I see that the Blog list item has a ID of “menu-item-1244″… Search in your CSS file for: #menu-item-1244, than try to lookup. And post more details about the problem..
Forum: Themes and Templates
In reply to: [Church] Header sizeWhat theme do you use? If you use a premium theme like me ([moderated]), than you can modify it easily without going in the CSS file.. I inspected your code, but I can’t find any height attribute.. Is your theme responsive? If it is, try to search for the media queries, and try your luck there. Try to look for header attribute in the media queries (9/10 times at the bottom of your CSS file or in a other file called -> theme.responsive.css)
Forum: Themes and Templates
In reply to: [Decode] Request New Social IconWhat theme do you use? If you use a premium theme like me ([moderated]) you can change the social icons very easily.. I got over 22 social icons. You can also add it manually, but be aware that you could ruin your site.. If you got any PHP knowledge then do it ?? Please post the Theme you’re using.
Forum: Themes and Templates
In reply to: [Simply Read] How to change font on the Simply Read themeI guess you mean the font-family? You can do that easily via the CSS file.. Go to the bottom and type in:
to download a font in your website:
@font-face {
font-family: myFirstFont;
src: url(sansation_light.woff);
}attribute you want to apply the font {
font-family: “Times New Roman”, Georgia, Serif; <- the fonts you want to insert
}I also got some other fonts than the regular ones at [moderated]
Read more at: https://www.w3schools.com/cssref/css3_pr_font-face_rule.asp